moreThan method

ConditionQuery moreThan(
  1. dynamic other
)

Get db statement to check if this value more than another date,

other may be DateTime object or DateTimeField

Implementation

ConditionQuery moreThan(dynamic other) {
  return ConditionQuery(operatorString: '>', before: this, after: other);
}