AccountAddress constructor

AccountAddress({
  1. String? country,
  2. String? locality,
  3. String? postalCode,
  4. String? region,
  5. String? streetAddress,
})

Implementation

AccountAddress({
  this.country,
  this.locality,
  this.postalCode,
  this.region,
  this.streetAddress,
});