getInputConnections method

Iterable<Connection> getInputConnections(
  1. Node n
)

Implementation

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