updateBadge static method

Future<void> updateBadge(
  1. int count
)

Change badge on app icon

Implementation

static Future<void> updateBadge(int count) async {
  await _channel.invokeMethod('updateBadge', {"count": count});
}