getUnReadNotificationCount method

Future<String?> getUnReadNotificationCount()
override

Implementation

Future<String?> getUnReadNotificationCount() async {
  final version = await methodChannel.invokeMethod<String>('getUnReadNotificationCount');
  return version;
}