revokeConsent function

Future<void> revokeConsent(
  1. String accessTokenValue
)

Revokes all of the scopes that the user granted to the app.

A valid accessTokenValue is required to revoke the permission.

Implementation

Future<void> revokeConsent(String accessTokenValue) {
  final completer = Completer<void>();

  void done(TokenRevocationResponse arg) {
    completer.complete();
  }

  oauth2.revoke(accessTokenValue, done);

  return completer.future;
}