MmCloudCustomer constructor

MmCloudCustomer({
  1. String? id,
  2. String? creatorId,
  3. int? createAt,
  4. String? email,
  5. String? name,
  6. String? numEmployees,
  7. String? contactFirstName,
  8. String? contactLastName,
  9. MmAddress? billingAddress,
  10. MmAddress? companyAddress,
  11. MmPaymentMethod? paymentMethod,
})

Returns a new MmCloudCustomer instance.

Implementation

MmCloudCustomer({
  this.id,
  this.creatorId,
  this.createAt,
  this.email,
  this.name,
  this.numEmployees,
  this.contactFirstName,
  this.contactLastName,
  this.billingAddress,
  this.companyAddress,
  this.paymentMethod,
});