Skip to content

Commit 376c935

Browse files
Added payload management for CallKeepDidDisplayIncomingCall (#134)
1 parent 097e59d commit 376c935

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/src/actions.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,14 @@ class CallKeepDidDisplayIncomingCall extends EventType {
4040
handle = arguments['handle'] as String,
4141
localizedCallerName = arguments['localizedCallerName'] as String,
4242
hasVideo = arguments['hasVideo'] as bool,
43-
fromPushKit = arguments['fromPushKit'] as bool;
43+
fromPushKit = arguments['fromPushKit'] as bool,
44+
payload = arguments['payload'] as Map<dynamic,dynamic>;
4445
String? callUUID;
4546
String? handle;
4647
String? localizedCallerName;
4748
bool? hasVideo;
4849
bool? fromPushKit;
50+
Map<dynamic,dynamic>? payload;
4951
}
5052

5153
class CallKeepDidPerformSetMutedCallAction extends EventType {

0 commit comments

Comments
 (0)