operatorAdd method

Expression operatorAdd(
  1. Expression other
)

Returns the result of this + other.

Implementation

Expression operatorAdd(Expression other) => BinaryExpression._(
      expression,
      other,
      '+',
    );