getOutgoingEdges method
Gets all neighboring edges of a vertex
Implementation
@override
List<DirectedEdge> getOutgoingEdges(Vertex vertex) {
List<DirectedEdge> found = [];
found.addAll(graph[getVertex(vertex)] as List<DirectedEdge>);
return found;
}