ExternalServicePostalAddress constructor

ExternalServicePostalAddress({
  1. String? locality,
  2. String? postalCode,
  3. String? streetAddress,
})

Returns a new ExternalServicePostalAddress instance.

Implementation

ExternalServicePostalAddress({
  this.locality,
  this.postalCode,
  this.streetAddress,
});