AwsNodeElementNodesSpace constructor

AwsNodeElementNodesSpace({
  1. required String id,
  2. required Widget node,
  3. required Offset offset,
  4. AwsNodeConnectorNodesSpace? connector,
  5. List<AwsNodeElementNodesSpace>? connectedNodes,
})

Constructor de la clase AwsNodeElementNodesSpace.

id: Unique identifier for the node.

node: Widget that represents the content of the node.

offset: Position of the node in space.

connector: Connector that associates the node with its parent node.

connectedNodes: List of nodes connected to this node.

Implementation

AwsNodeElementNodesSpace({
  required this.id,
  required this.node,
  required this.offset,
  this.connector,
  this.connectedNodes,
});