RxChatImpl constructor
- ChatRepository _chatRepository,
- ChatDriftProvider _driftChat,
- DraftDriftProvider _draftLocal,
- ChatItemDriftProvider _driftItems,
- ChatMemberDriftProvider _driftMembers,
- 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;