getReadNotificationCount method

Future<String?> getReadNotificationCount()
override

Implementation

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