IntrospectionResponse constructor

IntrospectionResponse({
  1. bool? active,
  2. String? scope,
  3. String? clientId,
  4. IntrospectionResponseTokenTypeEnum? tokenType,
  5. int? exp,
  6. int? iat,
  7. String? sub,
})

Returns a new IntrospectionResponse instance.

Implementation

IntrospectionResponse({
  this.active,
  this.scope,
  this.clientId,
  this.tokenType,
  this.exp,
  this.iat,
  this.sub,
});