processNotificationWithInfoForiOS static method

Future<Null> processNotificationWithInfoForiOS(
  1. Map userInfo
)

Processes the content of push notification received for iOS. Use this API only if push notification configuration is to be done manually in dart.

Implementation

static Future<Null> processNotificationWithInfoForiOS(Map userInfo) async {
  await _channel.invokeMethod('processNotificationWithInfoForiOS', userInfo);
}