getSlotReservations abstract method

Future<List<Reservation>> getSlotReservations({
  1. required String token,
  2. required int slotId,
})

Fetches all reservations for the slot with slotId.

Note: User associated with token must be a supervisor of the slot.

Implementation

Future<List<Reservation>> getSlotReservations({required String token, required int slotId});