ServicePostalAddress constructor

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

Returns a new ServicePostalAddress instance.

Implementation

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