getAll method

Future<List<Reservation>> getAll()

Implementation

Future<List<Reservation>> getAll() async {
  return await ref
      .watch(reservationControllerProvider<T>().notifier)
      .getAll();
}