DartBlockValueTreeAlgebraicOperatorNode.init constructor
DartBlockValueTreeAlgebraicOperatorNode.init(
- DartBlockAlgebraicOperator? operator,
- DartBlockValueTreeAlgebraicNode? leftChild,
- DartBlockValueTreeAlgebraicNode? rightChild,
- DartBlockValueTreeAlgebraicNode? parent, {
- String? specificNodeKey,
Implementation
DartBlockValueTreeAlgebraicOperatorNode.init(
this.operator,
this.leftChild,
this.rightChild,
super.parent, {
super.specificNodeKey,
}) : super.init(
numericNodeType: DartBlockValueTreeAlgebraicNodeType.algebraicOperator,
) {
leftChild?.parent = this;
rightChild?.parent = this;
}