handlePushNotification static method

void handlePushNotification(
  1. Map pushNotificationPayload
)

Implementation

static void handlePushNotification(Map pushNotificationPayload) {
  if (Platform.isIOS) {
    _channel.invokeMethod('handlePushNotification',
        {
          'pushNotificationPayload': pushNotificationPayload
        });
  }
}