revokeTokenWithAuthorizationCode method

  1. @override
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

@override
Future<void> revokeTokenWithAuthorizationCode(
    String authorizationCode) async {
  throw UnimplementedError(
    'revokeTokenWithAuthorizationCode() is only available on apple platforms.',
  );
}