Address constructor

Address({
  1. String? address1,
  2. String? address2,
  3. String? city,
  4. String? company,
  5. String? contact,
  6. String? fax,
  7. String? phone,
  8. String? regionCode,
  9. String? state,
  10. String? zip,
})

Implementation

Address({
  this.address1,
  this.address2,
  this.city,
  this.company,
  this.contact,
  this.fax,
  this.phone,
  this.regionCode,
  this.state,
  this.zip,
});