hasPath method

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

Returns whether the data store contains the given document path in the value store under the given resolver path.

Implementation

bool hasPath(String resolverPath, String path) {
  return _plaintextStore.hasPath(resolverPath, path) ||
      _encryptedStore.hasPath(resolverPath, path);
}