vertexes property
      
      Set<LayoutVertex> 
      get
      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',
    );
      
      set
      vertexes
      (Set<LayoutVertex>  value) 
      
    
    
    
Implementation
set vertexes(_i3.Set<_i3.LayoutVertex> value) {
  _i4.setProperty(
    this,
    'vertexes',
    value,
  );
}