KeycloakUser constructor

KeycloakUser(
  1. String? sub, {
  2. String? email,
  3. bool? emailVerified,
  4. String? gender,
  5. String? fullName,
  6. String? picture,
  7. String? birthdate,
  8. String? website,
  9. String? nickname,
  10. String? lastName,
  11. String? middleName,
  12. String? firstName,
  13. String? updatedAt,
  14. String? username,
  15. String? locale,
  16. String? zoneinfo,
})

Implementation

KeycloakUser(this.sub, {

  // Email scope
  this.email,
  this.emailVerified,

  // Profile scope
  this.gender,
  this.fullName,
  this.picture,
  this.birthdate,
  this.website,
  this.nickname,
  this.lastName,
  this.middleName,
  this.firstName,
  this.updatedAt,
  this.username,
  this.locale,
  this.zoneinfo,
});