AddressInfo constructor

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

Implementation

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