BillingDetails constructor

BillingDetails(
  1. String name,
  2. String email,
  3. String phone,
  4. String addressLine,
  5. String country,
  6. String city,
  7. String state,
  8. String zipCode,
)

Implementation

BillingDetails(
  this.name,
  this.email,
  this.phone,
  this.addressLine,
  this.country,
  this.city,
  this.state,
  this.zipCode,
);