decrementGlobalBadgeCounter method
Decrement the badge counter
Implementation
@override
Future<int> decrementGlobalBadgeCounter() async {
final int badgeCount =
await methodChannel.invokeMethod(CHANNEL_METHOD_DECREMENT_BADGE_COUNT);
return badgeCount;
}