areNotificationsEnabled method

Future<bool> areNotificationsEnabled()

Android only This method returns if devices can receive notifications or not.

Implementation

Future<bool> areNotificationsEnabled() async {
  return await _channel.invokeMethod('areNotificationsEnabled');
}