sourceVertexes property

Iterator<LayoutVertex> get sourceVertexes

This read-only property returns an iterator for all of the vertexes that are connected with edges coming into this vertex.

Note that this is inefficient compared to iterating over the edges (#sourceEdges) due to the need to avoid duplicate vertexes if there happen to be multiple edges connecting with the same vertex.

Implementation

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

Implementation

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