InternalServiceDataAddress constructor

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

Returns a new InternalServiceDataAddress instance.

Implementation

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