getNode method

GraphNode getNode(
  1. ID id
)

Implementation

GraphNode getNode(ID id) {
  return nodes[id] ?? GraphNode.idle;
}