UserTokenResponse constructor

UserTokenResponse({
  1. int? exp,
  2. int? iat,
  3. String? jti,
  4. String? iss,
  5. String? sub,
  6. String? typ,
  7. String? azp,
  8. String? sessionState,
  9. String? acr,
  10. List<String>? allowedOrigins,
  11. RealmAccess? realmAccess,
  12. String? scope,
  13. String? sid,
  14. bool? emailVerified,
  15. String? userCategory,
  16. String? positionId,
  17. String? mobileNumber,
  18. String? designationId,
  19. String? name,
  20. String? preferredUsername,
  21. String? partnerId,
  22. String? givenName,
  23. String? familyName,
  24. String? userId,
  25. String? email,
})

Implementation

UserTokenResponse({
  this.exp,
  this.iat,
  this.jti,
  this.iss,
  this.sub,
  this.typ,
  this.azp,
  this.sessionState,
  this.acr,
  this.allowedOrigins,
  this.realmAccess,
  this.scope,
  this.sid,
  this.emailVerified,
  this.userCategory,
  this.positionId,
  this.mobileNumber,
  this.designationId,
  this.name,
  this.preferredUsername,
  this.partnerId,
  this.givenName,
  this.familyName,
  this.userId,
  this.email,
});