class City { final String name; final String image; City({ required this.name, required this.image, }); }