vertexes property

Iterator<LayoutVertex> get vertexes

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

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

Implementation

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