deleteAll

actual open override fun deleteAll(): SecureLocalStorageResult

Deletes all entries from the secure local storage.

This method removes all key-value pairs stored in the underlying data store. It operates synchronously and ensures the storage is cleared completely.

Return

A SecureLocalStorageResult indicating the result of the operation. Returns SecureLocalStorageResult.Success if the operation is successful, or SecureLocalStorageResult.Failure if an error occurs during the deletion process.

expect open override fun deleteAll(): SecureLocalStorageResult

Deletes all stored key-value entries in the secure local storage.

Return

A SecureLocalStorageResult indicating the outcome of the operation. Returns SecureLocalStorageResult.Success if all entries were successfully deleted, or SecureLocalStorageResult.Failure if an error occurred during the operation.