getNotificationCount method

Future<String> getNotificationCount()

Implementation

Future<String> getNotificationCount() async {
  String count = await _channel.invokeMethod('notificationCount');
  return count;
}