setDisableInAppNotifications static method

Future<void> setDisableInAppNotifications({
  1. required bool disable,
})

setDisableInAppNotifications

Disables the in-app notifications

Available Platforms

Web, Android, iOS

Implementation

static Future<void> setDisableInAppNotifications({
  required bool disable,
}) async {
  if (!kIsWeb && !io.Platform.isAndroid && !io.Platform.isIOS) {
    debugPrint(
      'setDisableInAppNotifications is not available for current operating system',
    );
    return;
  }

  await _channel.invokeMethod(
    'setDisableInAppNotifications',
    {'disable': disable},
  );
}