revoke abstract method

Future<HttpResult<AuthRevokeResponse>> revoke({
  1. required String accessToken,
  2. required String clientId,
})

Revoke the accessToken acquired during the OAuth process using the clientId indicated.

For more information, please read the link below: https://dev.twitch.tv/docs/authentication#revoking-access-tokens

Implementation

Future<HttpResult<AuthRevokeResponse>> revoke({
  required String accessToken,
  required String clientId,
});