AddressInput constructor

AddressInput({
  1. String? address1,
  2. String? address2,
  3. String? street,
  4. String? city,
  5. String? postalCode,
  6. String? country,
})

Implementation

AddressInput({
  this.address1,
  this.address2,
  this.street,
  this.city,
  this.postalCode,
  this.country,
}) : super();