Returns the Cities object with the matching id, or null if no city is found.
id
null
Cities? getCityById(int id) { return slCities.firstWhere( (location) => location.id == id, ); }