We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 097e59d commit 376c935Copy full SHA for 376c935
lib/src/actions.dart
@@ -40,12 +40,14 @@ class CallKeepDidDisplayIncomingCall extends EventType {
40
handle = arguments['handle'] as String,
41
localizedCallerName = arguments['localizedCallerName'] as String,
42
hasVideo = arguments['hasVideo'] as bool,
43
- fromPushKit = arguments['fromPushKit'] as bool;
+ fromPushKit = arguments['fromPushKit'] as bool,
44
+ payload = arguments['payload'] as Map<dynamic,dynamic>;
45
String? callUUID;
46
String? handle;
47
String? localizedCallerName;
48
bool? hasVideo;
49
bool? fromPushKit;
50
+ Map<dynamic,dynamic>? payload;
51
}
52
53
class CallKeepDidPerformSetMutedCallAction extends EventType {
0 commit comments