UserDTO constructor

UserDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? email,
  7. String? passwordChangedAt,
  8. String? type,
  9. bool? isGuest,
  10. ProfileDTO? detail,
  11. bool? isTest,
  12. double? balance,
  13. String? balanceCurrency,
})

Implementation

UserDTO({
  super.id,
  super.createdAt,
  super.updatedAt,
  super.isActive,
  super.isDeleted,
  this.email,
  this.passwordChangedAt,
  this.type,
  this.isGuest,
  this.detail,
  this.isTest,
  this.balance,
  this.balanceCurrency,
});