getChat method

FutureOr<RxChat?> getChat(
  1. ChatId id
)

Returns a RxChat by the provided id.

Implementation

FutureOr<RxChat?> getChat(ChatId id) {
  Log.debug('getChat($id)', '$runtimeType');
  return _chatService.get(id);
}