InvitesRepository constructor

InvitesRepository(
  1. InvitesDatasource _invites,
  2. AuthRepository _auth,
  3. CalendarPlanRepository _plan
)

Holds all invites for the current user

Implementation

InvitesRepository(this._invites, this._auth, this._plan) : super(AsyncValue.loading()) {
  watchAsync(_auth);
}