linksConnected property

Iterator<Link> get linksConnected

This read-only property returns an iterator over all of the Links that are connected with this node. This includes both links that are coming out of this node as well as links that are going into this node. Setting Link#fromNode or Link#toNode to refer to this Node will add that Link to this collection.

Use the #findLinksConnected, #findLinksOutOf, or #findLinksInto methods to get different subsets of the links, depending on direction or depending on connecting to a particular port.

A template should not have any links connected with it.

Implementation

_i3.Iterator<_i3.Link> get linksConnected => _i4.getProperty(
      this,
      'linksConnected',
    );
set linksConnected (Iterator<Link> value)

Implementation

set linksConnected(_i3.Iterator<_i3.Link> value) {
  _i4.setProperty(
    this,
    'linksConnected',
    value,
  );
}