Customer constructor

Customer({
  1. String? alternateEmail,
  2. String? customerDomain,
  3. bool? customerDomainVerified,
  4. String? customerId,
  5. String? customerType,
  6. String? kind,
  7. String? phoneNumber,
  8. Address? postalAddress,
  9. PrimaryAdmin? primaryAdmin,
  10. String? resourceUiUrl,
})

Implementation

Customer({
  this.alternateEmail,
  this.customerDomain,
  this.customerDomainVerified,
  this.customerId,
  this.customerType,
  this.kind,
  this.phoneNumber,
  this.postalAddress,
  this.primaryAdmin,
  this.resourceUiUrl,
});