get method

  1. @override
Future<Node> get(
  1. String path
)
override

Fetches a node by its path.

@param path the path of the node to be fetched @return The requested node @throws StorageException if the storage backend encounters a problem

Implementation

@override
Future<Node> get(String path) async {
  await _finishInit();
  return await _get(path);
}