getHiddenNodes method
Gets all hidden nodes in the graph.
Returns a list of nodes where Node.isVisible is false.
Implementation
List<Node<T>> getHiddenNodes() {
return _nodes.values.where((node) => !node.isVisible).toList();
}
Gets all hidden nodes in the graph.
Returns a list of nodes where Node.isVisible is false.
List<Node<T>> getHiddenNodes() {
return _nodes.values.where((node) => !node.isVisible).toList();
}