removeAll method

void removeAll()

Removes all credentials from the ArcGISCredentialStore.

During a logout workflow, before calling this function, users should call ArcGISCredentialStore.getCredentials, filter all instances of OAuthUserCredential, and invalidate them using OAuthUserCredential.revokeToken.

Implementation

void removeAll() {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ArcGISCredentialStore_removeAll(
      _handle,
      errorHandler,
    );
  });
}