CustomerPostalAddress constructor

CustomerPostalAddress({
  1. String? addressLine1,
  2. String? addressLine2,
  3. String? addressLine3,
  4. String? contactName,
  5. String? countryCode,
  6. String? locality,
  7. String? organizationName,
  8. String? postalCode,
  9. String? region,
})

Implementation

CustomerPostalAddress({
  this.addressLine1,
  this.addressLine2,
  this.addressLine3,
  this.contactName,
  this.countryCode,
  this.locality,
  this.organizationName,
  this.postalCode,
  this.region,
});