enableNotifications method

Future<void> enableNotifications()

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

Implementation

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