isBiggerThan method

Expression<bool> isBiggerThan(
  1. Expression<DT> other
)

Returns an expression that is true if this expression is strictly bigger than the other expression.

Implementation

Expression<bool> isBiggerThan(Expression<DT> other) {
  return _Comparison(this, _ComparisonOperator.more, other);
}