CustomerDetails constructor

CustomerDetails({
  1. Address? address,
  2. String? email,
  3. String? name,
  4. String? phone,
  5. String? taxExempt,
  6. List<String>? taxIds,
})

Implementation

CustomerDetails({
  this.address,
  this.email,
  this.name,
  this.phone,
  this.taxExempt,
  this.taxIds,
});