fromNode property

Node? get fromNode

Gets or sets the Node that this link comes from. The #fromPortId specifies which port the link comes from. The default value is null -- this link is not coming from any node.

A template should not be connected with any node.

Implementation

_i3.Node? get fromNode => _i4.getProperty(
      this,
      'fromNode',
    );
set fromNode (Node? value)

Implementation

set fromNode(_i3.Node? value) {
  _i4.setProperty(
    this,
    'fromNode',
    value ?? _i5.undefined,
  );
}