cleanupAuthData static method

void cleanupAuthData(
  1. String state
)

Clean up stored verification data

Implementation

static void cleanupAuthData(String state) {
  _codeVerifierStore.remove(state);
  _callbackStore.remove(state);
}