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