remove method
- required ArcGISCredential credential,
Removes the credential from ArcGISCredentialStore if present.
Parameters:
credential
— The credential to be removed from ArcGISCredentialStore.
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,
);
});
}