get method

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

Returns a RxChat by the provided id.

Implementation

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