lessThanOrEquals method

ConditionQuery lessThanOrEquals(
  1. dynamic other
)

Get a sql statement representation that check weather this value is less than or equal other.

other may be of the following:

DoubleField - IntField - NumField - double - int

Implementation

ConditionQuery lessThanOrEquals(dynamic other) {
  return ConditionQuery(operatorString: '<=', before: this, after: other);
}