unreadNotificationCount method
Unread notifications, for a badge on the tab.
Unread count for a badge. See
AppwinCommunity.unreadNotificationCount.
Implementation
@override
Future<int> unreadNotificationCount() async {
final count = await methodChannel.invokeMethod<int>(
'unreadNotificationCount',
);
return count ?? 0;
}