targetNodeBounds property
Rect?
get
targetNodeBounds
Bounds of the hovered node.
Set to null when not hovering over a valid target, or to the node bounds when hovering over a valid target port. Used for node-aware routing.
Implementation
Rect? get targetNodeBounds => _targetNodeBounds.value;
set
targetNodeBounds
(Rect? value)
Sets the target node bounds.
Implementation
set targetNodeBounds(Rect? value) => _targetNodeBounds.value = value;