clearBadgeNumber function
Clear badge number
Implementation
Future<void> clearBadgeNumber() async {
if (kIsWeb) {
return;
}
if (Platform.isAndroid || Platform.isIOS) {
await AppBadgePlus.updateBadge(0);
}
}
Clear badge number
Future<void> clearBadgeNumber() async {
if (kIsWeb) {
return;
}
if (Platform.isAndroid || Platform.isIOS) {
await AppBadgePlus.updateBadge(0);
}
}