getInputConnections method
Implementation
Iterable<Connection> getInputConnections(Node n) {
return connections.where((c) => c.enabled && c.to == n);
}
Iterable<Connection> getInputConnections(Node n) {
return connections.where((c) => c.enabled && c.to == n);
}