getUnReadNotificationCount method

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

Implementation

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