CustomerData constructor

CustomerData({
  1. dynamic clientId,
  2. int? id,
  3. dynamic merchantId,
  4. String? uuid,
  5. String? email,
  6. String? firstName,
  7. dynamic middleName,
  8. String? lastName,
  9. String? gender,
  10. String? phoneNumber,
  11. Meta? meta,
  12. String? status,
  13. dynamic deletedAt,
  14. DateTime? createdAt,
  15. DateTime? updatedAt,
})

Implementation

CustomerData({
  this.clientId,
  this.id,
  this.merchantId,
  this.uuid,
  this.email,
  this.firstName,
  this.middleName,
  this.lastName,
  this.gender,
  this.phoneNumber,
  this.meta,
  this.status,
  this.deletedAt,
  this.createdAt,
  this.updatedAt,
});