links property

Iterator<Link> links

This read-only property returns an iterator of all Links in the Diagram.

This includes both data-bound and unbound links, and both top-level links and links inside Groups.

Implementation

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

Implementation

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