BillingAddress constructor

BillingAddress({
  1. String? address1,
  2. String? address2,
  3. String? city,
  4. String? company,
  5. String? country,
  6. String? firstName,
  7. String? lastName,
  8. String? phone,
  9. String? province,
  10. String? zip,
  11. String? name,
  12. String? provinceCode,
  13. String? countryCode,
  14. String? latitude,
  15. String? longitude,
})

Implementation

BillingAddress(
    {this.address1,
    this.address2,
    this.city,
    this.company,
    this.country,
    this.firstName,
    this.lastName,
    this.phone,
    this.province,
    this.zip,
    this.name,
    this.provinceCode,
    this.countryCode,
    this.latitude,
    this.longitude});