Check if a tour is in the list
Future<bool> isTourExist(String tourName) async { final tours = await getToursList(); return tours.any((tour) => tour.query == tourName); }