operator / method

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

Performs a division (this / other) in sql.

Implementation

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