Geo constructor

Geo({
  1. String? city,
  2. String? geonamesCityId,
  3. String? region,
  4. String? countryCode,
  5. String? country,
  6. double? latitude,
  7. double? longitude,
})

Implementation

Geo({
  this.city,
  this.geonamesCityId,
  this.region,
  this.countryCode,
  this.country,
  this.latitude,
  this.longitude,
});