showNotification method

Future<void> showNotification(
  1. String body,
  2. String msgId,
  3. String url
)

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,
  });
}