isAppBadgeSupported static method

Future<bool> isAppBadgeSupported()

Implementation

static Future<bool> isAppBadgeSupported() async {
  bool? appBadgeSupported = await _channel.invokeMethod('isAppBadgeSupported');
  return appBadgeSupported ?? false;
}