suspendInAppNotifications static method

Future<void> suspendInAppNotifications()

In-App Controls Suspends display of InApp Notifications. The InApp Notifications are queued once this method is called and will be displayed once resumeInAppNotifications() is called.

Implementation

/// Suspends display of InApp Notifications.
/// The InApp Notifications are queued once this method is called
/// and will be displayed once resumeInAppNotifications() is called.
static Future<void> suspendInAppNotifications() async {
  return await _dartToNativeMethodChannel
      .invokeMethod('suspendInAppNotifications', {});
}