Returns the District object with the matching id, or null if no district is found.
id
null
District? getDistrictById(int id) { return slDistricts.firstWhere( (district) => district.id == id, ); }