operator * method

Expression<DT> operator *(
  1. Expression<DT> other
)

Performs a multiplication (this * other) in sql.

Implementation

Expression<DT> operator *(Expression<DT> other) {
  return (dartCast<int>() * other.dartCast<int>()).dartCast<DT>();
}