disableNotifications static method

Future<void> disableNotifications()

Disables push notifications for the end user, across both OneSignal and FCM. See enableNotifications().

Implementation

static Future<void> disableNotifications() async {
  OneSignal.User.pushSubscription.optOut();
  await AdhubFcm.disableNotifications();
}