List<City> getCitiesForCountry(int countryId) => _cities?.cities.where((city) => city.countryId == countryId).toList() ?? [];