remove method

bool remove(
  1. {required ArcGISCredential credential}
)

Removes the credential from ArcGISCredentialStore if present.

Parameters:

Return Value: True if the credential was found and removed from the store, otherwise false.

Implementation

bool remove({required ArcGISCredential credential}) {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISCredentialStore_remove(
        _handle, credential._handle, errorHandler);
  });
}