Customer constructor

Customer({
  1. String? uuid,
  2. String? refCode,
  3. dynamic firstName,
  4. dynamic lastName,
  5. String? email,
  6. dynamic phoneNumber,
  7. num? totalSpendInUSD,
  8. String? businessId,
  9. String? userId,
  10. String? context,
  11. String? createdAtDateOnly,
  12. String? createdAt,
})

Implementation

Customer({
  this.uuid,
  this.refCode,
  this.firstName,
  this.lastName,
  this.email,
  this.phoneNumber,
  this.totalSpendInUSD,
  this.businessId,
  this.userId,
  this.context,
  this.createdAtDateOnly,
  this.createdAt,
});