RevokeTokenRequest constructor

const RevokeTokenRequest({
  1. required OpenIdConfiguration configuration,
  2. required String token,
  3. required TokenType tokenType,
  4. String? clientId,
  5. String? clientSecret,
})

Implementation

const RevokeTokenRequest({
  required this.configuration,
  required this.token,
  required this.tokenType,
  this.clientId,
  this.clientSecret,
});