BinaryOperatorExpr constructor
BinaryOperatorExpr(
- BinaryOperator operator,
- Expression lhs,
- Expression rhs, [
- OutputType? type,
Implementation
BinaryOperatorExpr(this.operator, this.lhs, this.rhs, [OutputType? type])
: super(type ?? lhs.type);