TokenInfo constructor

TokenInfo({
  1. required String userId,
  2. required String tokenIssuer,
  3. required String tokenId,
  4. required Set<Scope> scopes,
  5. required String method,
})

Creates a new TokenInfo instance.

Implementation

TokenInfo({
  required this.userId,
  required this.tokenIssuer,
  required this.tokenId,
  required this.scopes,
  required this.method,
});