handlePushNotification static method

void handlePushNotification(
  1. Map pushPayload
)

Process the notification information and display a notification to the user as appropriate (Android)

Implementation

static void handlePushNotification(Map pushPayload) async {
  await _channel.invokeMethod("handlePushNotification", <String, Map>{
    'pushPayload': pushPayload,
  });
}