disconnect method
Revokes the previously fetched token
Implementation
@override
Future<OAuth2Response> disconnect({httpClient}) async {
var response = super.disconnect(httpClient: httpClient);
await _oauthDisconnect();
return await response;
}