List<Cities> getCitiesByDistrictId(int districtId) { return slCities .where((location) => location.districtId == districtId) .toList(); }