vertexes property

Set<LayoutVertex> vertexes

Gets a collection of all of the LayoutVertexes in this network. Do not modify this collection directly. Instead, call #addVertex, #deleteVertex, #addNode, or #deleteNode.

Implementation

_i3.Set<_i3.LayoutVertex> get vertexes => _i4.getProperty(
      this,
      'vertexes',
    );
void vertexes=(Set<LayoutVertex> value)

Implementation

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