ClientUserEntity constructor

ClientUserEntity({
  1. String? firstName,
  2. String? lastName,
  3. String? email,
  4. String? phone,
  5. String? document,
  6. String? documentType,
  7. String? twoFactorAuthKey,
  8. String? developerPassword,
  9. String? administratorId,
  10. List<String>? memberships,
})

Implementation

ClientUserEntity({
  this.firstName,
  this.lastName,
  this.email,
  this.phone,
  this.document,
  this.documentType,
  this.twoFactorAuthKey,
  this.developerPassword,
  this.administratorId,
  this.memberships,
});