ConnectionCompleteContext<T> constructor
const
ConnectionCompleteContext<T> ({})
Creates a connection complete context.
Parameters:
sourceNode: The source node of the connectionsourcePort: The source port of the connectiontargetNode: The target node of the connectiontargetPort: The target port of the connectionexistingSourceConnections: IDs of existing connections from the source portexistingTargetConnections: IDs of existing connections to the target port
Implementation
const ConnectionCompleteContext({
required this.sourceNode,
required this.sourcePort,
required this.targetNode,
required this.targetPort,
required this.existingSourceConnections,
required this.existingTargetConnections,
});