IntrospectionResponse constructor

IntrospectionResponse({
  1. required bool? active,
  2. List<String>? aud = const [],
  3. String? clientId,
  4. int? exp,
  5. IntrospectionResponseExt? ext,
  6. int? iat,
  7. String? iss,
  8. int? nbf,
  9. String? tokenType,
  10. String? username,
  11. String? sub,
  12. String? jti,
})

Returns a new IntrospectionResponse instance.

Implementation

IntrospectionResponse({
  required this.active,
  this.aud = const [],
  this.clientId,
  this.exp,
  this.ext,
  this.iat,
  this.iss,
  this.nbf,
  this.tokenType,
  this.username,
  this.sub,
  this.jti,
});