Address constructor

Address({
  1. String? address1,
  2. String? address2,
  3. String? city,
  4. String? postalCode,
  5. String? state,
  6. String? country,
  7. dynamic location,
})

Implementation

Address({
  this.address1,
  this.address2,
  this.city,
  this.postalCode,
  this.state,
  this.country,
  this.location,
});