AddressInfo constructor

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

Implementation

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