BinaryOp constructor

const BinaryOp({
  1. required ExprRef left,
  2. required BinaryOperator op,
  3. required ExprRef right,
})

Implementation

const BinaryOp({
  required this.left,
  required this.op,
  required this.right,
});