showMissCallNotification method
Show Miss Call Notification. Only Android
Implementation
@override
Future<void> showMissCallNotification(StreamVideoPushParams params) async {
if (!CurrentPlatform.isAndroid) {
return;
}
await methodChannel.invokeMethod(
'showMissCallNotification',
params.toJson(),
);
}