Shipping constructor

Shipping({
  1. String? company,
  2. String? firstName,
  3. String? lastName,
  4. String? address1,
  5. String? address2,
  6. String? city,
  7. String? state,
  8. String? postcode,
  9. String? country,
})

Implementation

Shipping(
    {this.company,
    this.firstName,
    this.lastName,
    this.address1,
    this.address2,
    this.city,
    this.state,
    this.postcode,
    this.country});