revokeTokenWithAuthorizationCode method
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) {
return _delegate.revokeTokenWithAuthorizationCode(authorizationCode);
}