greaterThan method
- String p,
- {bool caseSensitive: false,
- bool withEqual: false}
Using withEqual
is deprecated, use greaterOrEqual instead.
Implementation
Condition greaterThan(String p,
{bool caseSensitive = false, bool withEqual = false}) {
if (withEqual) {
return greaterOrEqual(p, caseSensitive: caseSensitive);
} else {
return _op(p, ConditionOp.gt, caseSensitive);
}
}