BinaryOperatorExpr constructor

BinaryOperatorExpr(
  1. BinaryOperator operator,
  2. Expression lhs,
  3. Expression rhs, [
  4. OutputType? type,
])

Implementation

BinaryOperatorExpr(this.operator, this.lhs, this.rhs, [OutputType? type])
    : super(type ?? lhs.type);