getNode method

LayoutNode? getNode(
  1. String id
)

Get a node by ID (O(1) hash lookup).

Implementation

LayoutNode? getNode(String id) => nodeMap[id];