resumeInAppNotifications static method

Future<void> resumeInAppNotifications()

Resumes display of InApp Notifications. If suspendInAppNotifications() was called previously, calling this method will instantly show all queued InApp Notifications and also resume InApp Notifications on events raised after this method is called. If discardInAppNotifications() was called previously, calling this method will only resume InApp Notifications on events raised after this method is called.

Implementation

static Future<void> resumeInAppNotifications() async {
  return await _dartToNativeMethodChannel.invokeMethod('resumeInAppNotifications', {});
}