AwsNodeAnimatedNodesSpace constructor

AwsNodeAnimatedNodesSpace({
  1. required String id,
  2. required Widget node,
  3. required Offset offset,
  4. List<AwsNodeElementNodesSpace>? connectedNodes,
  5. required double width,
  6. required double height,
  7. required AwsAniSetting setting,
  8. AwsNodeConnectorNodesSpace? connector,
})

Constructor of class AwsNodeAnimatedNodesSpace.

id: Unique identifier for the node.

node: Widget that represents the content of the node.

offset: Position of the node in space.

connectedNodes: List of nodes connected to this node.

width: Width of the animated node.

height: Height of the animated node.

setting: Node animation settings.

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

Implementation

AwsNodeAnimatedNodesSpace({
  required super.id,
  required super.node,
  required super.offset,
  super.connectedNodes,
  required this.width,
  required this.height,
  required this.setting,
  super.connector,
});