IntrospectionRequest constructor

IntrospectionRequest({
  1. required String? token,
  2. String? tokenTypeHint,
})

Returns a new IntrospectionRequest instance.

Implementation

IntrospectionRequest({
  required this.token,
  this.tokenTypeHint,
});