get method

dynamic get(
  1. String resolverPath,
  2. String path
)

Implementation

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