showNotification method
Implementation
Future<void> showNotification(String body, String msgId, String url) async {
print("showNotification flutter code ========>$body -------$msgId =========$url",);
await methodChannel.invokeMethod('showNotification', {
'body': body,
'msgId': msgId,
'url': url,
});
}