CustomerDetails constructor

CustomerDetails({
  1. String? firstName,
  2. String? lastName,
  3. String? email,
  4. String? phone,
  5. Address? billingAddress,
  6. Address? shippingAddress,
})

Implementation

CustomerDetails({
  this.firstName,
  this.lastName,
  this.email,
  this.phone,
  this.billingAddress,
  this.shippingAddress,
});