setGlobalBadgeCounter method

  1. @override
Future<void> setGlobalBadgeCounter(
  1. int? amount
)
override

Set the badge counter to any value

Implementation

@override
Future<void> setGlobalBadgeCounter(int? amount) async {
  await methodChannel.invokeMethod(CHANNEL_METHOD_SET_BADGE_COUNT, amount);
}