getInboxMessageCount static method

Future<int?> getInboxMessageCount()

Returns the count of all inbox messages for the user

Implementation

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