BinaryExpression constructor

BinaryExpression(
  1. Expr _exp1,
  2. String _op,
  3. Expr _exp2
)

Implementation

BinaryExpression(this._exp1, this._op, this._exp2);