toNode property
Node?
get
toNode
Gets or sets the Node that this link goes to. The #toPortId specifies which port the link goes to. The default value is null -- this link is not going to any node.
A template should not be connected with any node.
Implementation
_i3.Node? get toNode => _i4.getProperty(
this,
'toNode',
);
set
toNode
(Node? value)
Implementation
set toNode(_i3.Node? value) {
_i4.setProperty(
this,
'toNode',
value ?? _i5.undefined,
);
}