CityImpl constructor

const CityImpl({
  1. required String country,
  2. required String city,
  3. required String accent_city,
  4. required String region,
  5. required double latitude,
  6. required double longitude,
})

Implementation

const CityImpl({
  required final this.country,
  required final this.city,
  required final this.accent_city,
  required final this.region,
  required final this.latitude,
  required final this.longitude,
});