authVerifyCreate method
Takes a token and indicates if it is valid. This view provides no information about a token's fitness for a particular use.
Parameters:
- TokenVerify tokenVerify (required):
Implementation
Future<void> authVerifyCreate(
TokenVerify tokenVerify,
) async {
final response = await authVerifyCreateWithHttpInfo(
tokenVerify,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}