greaterThan method

Condition greaterThan (
  1. String p,
  2. {bool caseSensitive: false,
  3. 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);
  }
}