getAll method

Future<List<Reservation>> getAll()

Implementation

Future<List<Reservation>> getAll() async {
  return await _searchService.getAll();
}