PrintAddress constructor

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

Implementation

PrintAddress({
  this.address1,
  this.address2,
  this.city,
  this.state,
  this.postalCode,
  this.country,
});