validate abstract method

Future<HttpResult<AuthValidateResponse>> validate({
  1. required String accessToken,
})

Validate the accessToken retrieved via the OAuth process.

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

Implementation

Future<HttpResult<AuthValidateResponse>> validate({
  required String accessToken,
});