import 'dart:async'; import 'dart:convert'; import 'package:flutter/services.dart'; class ReceivedIntent { final bool isNull; final String? fromPackageName; final List? fromSignatures; final String action; final String? data; final List? categories; final Map? extra; bool get isNotNull => !isNull; const ReceivedIntent({ this.isNull = true, this.fromPackageName, this.fromSignatures, required this.action, this.data, this.categories, this.extra, }); factory ReceivedIntent.fromMap(Map? map) => ReceivedIntent( isNull: map == null, fromPackageName: map?["fromPackageName"], fromSignatures: map?["fromSignatures"] != null ? List.unmodifiable( (map!["fromSignatures"] as List).map((e) => e.toString())) : null, action: map?["action"], data: map?["data"], categories: map?["categories"] != null ? List.unmodifiable( (map!["categories"] as List).map((e) => e.toString())) : null, extra: map?["extra"] != null ? (json.decode(map!["extra"]) as Map) .map((key, value) => MapEntry(key.toString(), value)) : null, ); Map toMap() => { "fromPackageName": fromPackageName, "fromSignatures": fromSignatures, "action": action, "data": data, "categories": categories, "extra": extra, }; } class ReceiveIntent { static const MethodChannel _methodChannel = const MethodChannel('receive_intent'); static const EventChannel _eventChannel = const EventChannel("receive_intent/event"); static Future getInitialIntent() async { final renameMap = await _methodChannel.invokeMapMethod('getInitialIntent'); //print("result: $renameMap"); return ReceivedIntent.fromMap(renameMap); } static Stream receivedIntentStream = _eventChannel .receiveBroadcastStream() .map((event) => ReceivedIntent.fromMap(event as Map?)); static Future giveResult(int resultCode, {Map? data, bool shouldFinish: false}) async { await _methodChannel.invokeMethod('giveResult', { "resultCode": resultCode, "data": json.encode(data), "shouldFinish": shouldFinish, }); } }