InternalServicePostalAddress constructor

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

Returns a new InternalServicePostalAddress instance.

Implementation

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