Address constructor

const Address({
  1. String? addressLine1,
  2. String? addressLine2,
  3. String? addressLine3,
  4. String? administrativeDistrictLevel1,
  5. String? administrativeDistrictLevel2,
  6. String? administrativeDistrictLevel3,
  7. Country? country,
  8. String? firstName,
  9. String? lastName,
  10. String? locality,
  11. String? organization,
  12. String? postalCode,
  13. String? sublocality,
  14. String? sublocality2,
  15. String? sublocality3,
})

@macro Represents a physical address.

Implementation

const Address({
  this.addressLine1,
  this.addressLine2,
  this.addressLine3,
  this.administrativeDistrictLevel1,
  this.administrativeDistrictLevel2,
  this.administrativeDistrictLevel3,
  this.country,
  this.firstName,
  this.lastName,
  this.locality,
  this.organization,
  this.postalCode,
  this.sublocality,
  this.sublocality2,
  this.sublocality3,
});