DartBlockValueTreeAlgebraicOperatorNode constructor

DartBlockValueTreeAlgebraicOperatorNode(
  1. DartBlockValueTreeAlgebraicNode? leftChild,
  2. DartBlockAlgebraicOperator? operator,
  3. DartBlockValueTreeAlgebraicNode? rightChild,
  4. DartBlockValueTreeAlgebraicNodeType numericNodeType,
  5. DartBlockValueTreeNodeType nodeType,
  6. String nodeKey,
)

Implementation

DartBlockValueTreeAlgebraicOperatorNode(
  this.leftChild,
  this.operator,
  this.rightChild,
  super.numericNodeType,
  super.nodeType,
  super.nodeKey,
) {
  leftChild?.parent = this;
  rightChild?.parent = this;
}