getUnreadInboxMessages static method

Future<List?> getUnreadInboxMessages()

Returns a list of json string representation of unread CTInboxMessage

Implementation

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