getPortConnections method
Gets connections for a specific port
Implementation
List<Connection> getPortConnections(String nodeId, String portId) {
return connections
.where((conn) => conn.involvesPort(nodeId, portId))
.toList();
}
Gets connections for a specific port
List<Connection> getPortConnections(String nodeId, String portId) {
return connections
.where((conn) => conn.involvesPort(nodeId, portId))
.toList();
}