vertexes property
List<GraphVertex>
get
vertexes
List of connected vertexes GraphVertex
Example:
// Get graph vertices
List<GraphVertex> vertices = graph.getVertices();
print('Number of graph vertices: ${vertices.length}');
Implementation
List<GraphVertex> get vertexes;