revokeTokenWithAuthorizationCode method

Future<void> revokeTokenWithAuthorizationCode(
  1. String authorizationCode
)

Apple only. Users signed in with Apple provider can revoke their token using an authorization code. Authorization code can be retrieved on the user credential i.e. userCredential.additionalUserInfo.authorizationCode

Implementation

Future<void> revokeTokenWithAuthorizationCode(String authorizationCode) {
  throw UnimplementedError(
      'revokeTokenWithAuthorizationCode() is not implemented');
}