UserEntity constructor

UserEntity({
  1. required String name,
  2. required String lastName,
  3. required String email,
  4. required String phone,
  5. String? uid,
  6. String? password,
  7. String? documentType,
  8. String? documentNumber,
  9. String? address,
  10. String? companyName,
  11. String? organizationUidFk,
  12. int? roleIdFk,
  13. DateTime? createdAt,
})

Implementation

UserEntity({
  required this.name,
  required this.lastName,
  required this.email,
  required this.phone,
  this.uid,
  this.password,
  this.documentType,
  this.documentNumber,
  this.address,
  this.companyName,
  this.organizationUidFk,
  this.roleIdFk,
  this.createdAt,
});