isBiggerThan method
Returns an expression that is true if this expression is strictly bigger than the other expression.
Implementation
@pragma('drift:v3-rename', 'isGreaterThan')
Expression<bool> isBiggerThan(Expression<DT> other) {
return _Comparison(this, _ComparisonOperator.more, other);
}