showNotification method
Implementation
Future<void> showNotification(
String body,
String msgId,
String url,
String userName,
) async {
await methodChannel.invokeMethod('showNotification', {
'body': body,
'msgId': msgId,
'url': url,
'userName': userName,
});
}