Location constructor

Location({
  1. String? country,
  2. String? countryCode,
  3. String? locality,
  4. String? region,
  5. String? subRegion,
  6. String? fullName,
  7. Geo? geo,
})

Implementation

Location({
  this.country,
  this.countryCode,
  this.locality,
  this.region,
  this.subRegion,
  this.fullName,
  this.geo,
});