SlotsRepository constructor

SlotsRepository(
  1. AuthRepository _auth,
  2. SlotsDatasource _datasource
)

Holds all slots the current user can reserve.

Implementation

SlotsRepository(this._auth, this._datasource) : super(AsyncValue.loading()) {
  watchAsync(_auth);
}