getReadNotificationCount method

  1. @override
Future<int?> getReadNotificationCount()
override

Implementation

@override
Future<int?> getReadNotificationCount() async {
  final readNotificationCount=await methodChannel.invokeMethod<int>('getReadNotificationCount');
  return readNotificationCount;
}