edges property

Iterator<LayoutEdge> get edges

This read-only property returns an iterator for all of the edges that are connected with this vertex in either direction.

Note that this is inefficient compared to iterating over the edges: #sourceEdges and #destinationEdges.

Implementation

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

Implementation

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