PostalAddress constructor

PostalAddress({
  1. String? recipientName,
  2. String? phoneNumber,
  3. String? streetAddress,
  4. String? extendedAddress,
  5. String? locality,
  6. String? region,
  7. String? postalCode,
  8. String? sortingCode,
  9. String? countryCodeAlpha2,
})

Implementation

PostalAddress({
  this.recipientName,
  this.phoneNumber,
  this.streetAddress,
  this.extendedAddress,
  this.locality,
  this.region,
  this.postalCode,
  this.sortingCode,
  this.countryCodeAlpha2,
});