recursiveDelete method

void recursiveDelete(
  1. String path
)

Deletes the path recursively from all resolver stores.

Implementation

void recursiveDelete(String path) {
  _plaintextStore.recursiveDelete(path);
  _encryptedStore.recursiveDelete(path);
}