Add app badge count
The app badge count, when set, can be seen on your app's icon on a user's device. Amplify provides you with simple helpers to manipulate this number.
Get the current badge count
Use getBadgeCount
to get the current app badge count. You might need to do this to calculate the value when setting the badge count.
final count = await Amplify.Notifications.Push.getBadgeCount();
Update the badge count
Use setBadgeCount
to set the current app badge count. Setting the badge count to 0
(zero) will remove the badge from your app's icon.
Amplify.Notifications.Push.setBadgeCount(42);