getAllInboxMessages static method

Future<List?> getAllInboxMessages()

Returns a list of json string representation of all CTInboxMessage

Implementation

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