BillingAddress constructor

BillingAddress({
  1. String? city,
  2. String? country,
  3. String? line1,
  4. String? line2,
  5. String? name,
  6. String? postalCode,
  7. String? state,
})

Implementation

BillingAddress({this.city, this.country, this.line1, this.line2, this.name, this.postalCode, this.state});