BillingAddress constructor

BillingAddress({
  1. String? addressLine1,
  2. String? addressLine2,
  3. String? city,
  4. String? state,
  5. String? zip,
  6. String? country,
})

Implementation

BillingAddress({
  this.addressLine1,
  this.addressLine2,
  this.city,
  this.state,
  this.zip,
  this.country,
});