BillingData constructor

BillingData({
  1. String? apartment,
  2. String? email,
  3. String? floor,
  4. String? firstName,
  5. String? street,
  6. String? building,
  7. String? phoneNumber,
  8. String? shippingMethod,
  9. String? postalCode,
  10. String? city,
  11. String? country,
  12. String? lastName,
  13. String? state,
})

Implementation

BillingData({
  this.apartment,
  this.email,
  this.floor,
  this.firstName,
  this.street,
  this.building,
  this.phoneNumber,
  this.shippingMethod,
  this.postalCode,
  this.city,
  this.country,
  this.lastName,
  this.state,
});