pushEnabled static method

Future<bool?> pushEnabled()

Implementation

static Future<bool?> pushEnabled() async {
  final bool? result = await _channel.invokeMethod('pushEnabled');
  return result;
}