ChatRepository constructor

ChatRepository(
  1. GraphQlProvider _graphQlProvider,
  2. ChatDriftProvider _chatLocal,
  3. ChatItemDriftProvider _itemsLocal,
  4. ChatMemberDriftProvider _membersLocal,
  5. AbstractCallRepository _callRepo,
  6. DraftDriftProvider _draftLocal,
  7. UserRepository _userRepo,
  8. VersionDriftProvider _sessionLocal,
  9. MonologDriftProvider _monologLocal, {
  10. required UserId me,
})

Implementation

ChatRepository(
  this._graphQlProvider,
  this._chatLocal,
  this._itemsLocal,
  this._membersLocal,
  this._callRepo,
  this._draftLocal,
  this._userRepo,
  this._sessionLocal,
  this._monologLocal, {
  required this.me,
});