getInboxMessageUnreadCount static method

Future<int?> getInboxMessageUnreadCount()

Returns the count of total number of unread inbox messages for the user

Implementation

static Future<int?> getInboxMessageUnreadCount() async {
  return await _dartToNativeMethodChannel.invokeMethod('getInboxMessageUnreadCount', {});
}