nodeAtPath method

NodeV0? nodeAtPath(
  1. Path path
)

Returns the node at the given path.

Implementation

NodeV0? nodeAtPath(Path path) {
  return root.childAtPath(path);
}