operator + method

Expression<BigInt> operator +(
  1. Expression<BigInt> other
)

Performs an addition (this + other) in sql.

Implementation

Expression<BigInt> operator +(Expression<BigInt> other) {
  return (dartCast<int>() + other.dartCast<int>()).dartCast<BigInt>();
}