Usuario constructor

Usuario({
  1. String? code,
  2. String? username,
  3. String? companyCode,
  4. String? fullName,
  5. bool? isDisabled,
  6. int? passwordAttempts,
  7. String? referenceCode,
  8. String? externalReference,
  9. DateTime? createdAt,
  10. String? createdBy,
  11. DateTime? writeAt,
  12. String? writeBy,
})

Implementation

Usuario({
  this.code,
  this.username,
  this.companyCode,
  this.fullName,
  this.isDisabled,
  this.passwordAttempts,
  this.referenceCode,
  this.externalReference,
  this.createdAt,
  this.createdBy,
  this.writeAt,
  this.writeBy,
});