disableNotifications method

Future<void> disableNotifications()

Android only
Disable notifications, this status will be persisted across Catapush starts

Implementation

Future<void> disableNotifications() async {
  if (Platform.isAndroid) {
    return _channel.invokeMethod('Catapush#disableNotifications', null);
  }
}