factory City.fromJson(Map<String, dynamic> json) { return City( cityName: json['cityName'] as String?, ); }