getApplicationIconBadgeNumber method
Fetches the icon batch number
The default value of this property is 0
(to show no batch)
Implementation
@override
Future<int> getApplicationIconBadgeNumber() async {
final int batchIconNumber =
await methodChannel.invokeMethod('mGetApplicationIconBadgeNumber');
return batchIconNumber;
}