AddressInfo constructor

AddressInfo({
  1. String? familyName,
  2. String? givenName,
  3. String? postalCode,
  4. String? regionCode,
})

Implementation

AddressInfo({
  this.familyName,
  this.givenName,
  this.postalCode,
  this.regionCode,
});