Location constructor

Location({
  1. String? address,
  2. String? city,
  3. String? region,
  4. String? postalCode,
  5. String? country,
  6. double? lat,
  7. double? lon,
  8. String? storeNumber,
})

Implementation

Location({
  this.address,
  this.city,
  this.region,
  this.postalCode,
  this.country,
  this.lat,
  this.lon,
  this.storeNumber,
});