Customer constructor

Customer({
  1. String? alternateEmail,
  2. DateTime? customerCreationTime,
  3. String? customerDomain,
  4. String? etag,
  5. String? id,
  6. String? kind,
  7. String? language,
  8. String? phoneNumber,
  9. CustomerPostalAddress? postalAddress,
})

Implementation

Customer({
  this.alternateEmail,
  this.customerCreationTime,
  this.customerDomain,
  this.etag,
  this.id,
  this.kind,
  this.language,
  this.phoneNumber,
  this.postalAddress,
});