handlePushNotification method

void handlePushNotification (
  1. Map pushPayload
)

Implementation

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