operator + method

Expression operator +(
  1. dynamic other
)

Add operator. Creates an Add expression.

Throws ExpressionOperationException if the operand cannot be converted to an Expression.

Implementation

Expression operator +(dynamic other) {
  try {
    return Add(this, _toExpression(other));
  } on ExpressionTypeConversionException catch (e) {
    throw ExpressionOperationException.withConversionContext(
        '+', this, other, e);
  }
}