ensureRemoteDialog method

Future<RxChatImpl?> ensureRemoteDialog(
  1. ChatId chatId
)

Ensures the provided Chat is remotely accessible.

Implementation

Future<RxChatImpl?> ensureRemoteDialog(ChatId chatId) async {
  Log.debug('ensureRemoteDialog($chatId)', '$runtimeType');

  if (chatId.isLocal) {
    if (chatId.isLocalWith(me)) {
      return await ensureRemoteMonolog();
    }

    final ChatData chat = _chat(
      await _graphQlProvider.createDialogChat(chatId.userId),
    );

    return _putEntry(chat);
  }

  return await get(chatId);
}