hasPath method

bool hasPath(
  1. String resolverPath,
  2. String path
)

Implementation

bool hasPath(String resolverPath, String path) {
  return _plaintextStore._store.get(resolverPath)?.hasPath(path) ??
      _encryptedStore._store.get(resolverPath)?.hasPath(path) ??
      false;
}