PrintifyAddress constructor

PrintifyAddress({
  1. String? first_name,
  2. String? last_name,
  3. String? region,
  4. String? address1,
  5. String? city,
  6. String? zip,
  7. String? email,
  8. String? phone,
  9. String? country,
  10. String? company,
})

Implementation

PrintifyAddress({
  this.first_name,
  this.last_name,
  this.region,
  this.address1,
  this.city,
  this.zip,
  this.email,
  this.phone,
  this.country,
  this.company,
});