clearBadge method

  1. @override
Future<void> clearBadge()
override

Clears the app icon badge (sets it to 0).

Does nothing if the current platform is not Android or iOS.

Implementation

@override
Future<void> clearBadge() async {
  if (!Platform.isAndroid && !Platform.isIOS) return;
  await methodChannel.invokeMethod('clearBadge');
}