pauseNotifications method

Future<void> pauseNotifications()

Android only
Pause notifications until next Catapush start or until Catapush.resumeNotifications()

Implementation

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