ClientUserTokenData constructor

ClientUserTokenData({
  1. String? id,
  2. String? name,
  3. String? secondName,
  4. String? email,
  5. String? phone,
  6. String? cpf,
  7. bool? is2FAAuthorized,
  8. int? expiresAt,
})

Implementation

ClientUserTokenData({
  this.id,
  this.name,
  this.secondName,
  this.email,
  this.phone,
  this.cpf,
  this.is2FAAuthorized,
  this.expiresAt,
});