edges property
Set<LayoutEdge>
get
edges
Gets a collection of all of the LayoutEdges in this network. Do not modify this collection directly. Instead, call #addEdge, #deleteEdge, #addLink, or #deleteLink.
Implementation
_i3.Set<_i3.LayoutEdge> get edges => _i4.getProperty(
this,
'edges',
);
set
edges
(Set<LayoutEdge> value)
Implementation
set edges(_i3.Set<_i3.LayoutEdge> value) {
_i4.setProperty(
this,
'edges',
value,
);
}