destinationVertexes property

Iterator<LayoutVertex> get destinationVertexes

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

Note that this is inefficient compared to iterating over the edges (#destinationEdges) 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 destinationVertexes => _i4.getProperty(
      this,
      'destinationVertexes',
    );
set destinationVertexes (Iterator<LayoutVertex> value)

Implementation

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