BoolBinOp constructor
Constructs a boolean binary operation with the operator and operands.
Parameters:
value: String representation of the operator ("&&" or "||")left: The left operand expressionright: The right operand expression
Implementation
BoolBinOp(
String value, Node<dynamic, LangVal> left, Node<dynamic, LangVal> right)
: super(BoolOperator.fromString(value), [left, right]);