RxChatImpl constructor

RxChatImpl(
  1. ChatRepository _chatRepository,
  2. ChatDriftProvider _driftChat,
  3. DraftDriftProvider _draftLocal,
  4. ChatItemDriftProvider _driftItems,
  5. ChatMemberDriftProvider _driftMembers,
  6. DtoChat dto,
)

Implementation

RxChatImpl(
  this._chatRepository,
  this._driftChat,
  this._draftLocal,
  this._driftItems,
  this._driftMembers,
  this.dto,
) : chat = Rx<Chat>(dto.value),
    _lastReadItemCursor = dto.lastReadItemCursor,
    unreadCount = RxInt(dto.value.unreadCount),
    ver = dto.ver;