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