shallowDelete method

void shallowDelete(
  1. String resolverPath,
  2. String path
)

Deletes the path shallowly from the given resolver path store.

Implementation

void shallowDelete(String resolverPath, String path) {
  _plaintextStore.shallowDelete(resolverPath, path);
  _encryptedStore.shallowDelete(resolverPath, path);
}