getUnReadNotificationCount method

Future<int?> getUnReadNotificationCount()

Implementation

Future<int?> getUnReadNotificationCount() async {
  var unReadNotificationCount =
  await FluttersamplepluginPlatform.instance.getUnReadNotificationCount();
  return unReadNotificationCount;
}