lessOrEqual method

Filter lessOrEqual(
  1. dynamic other
)

Convenience method for creating a CompareFilter which matches if this is less than or equals other.

If other is not an Expression, it will be wrapped into a ValueExpression.

Implementation

Filter lessOrEqual(dynamic other) =>
    CompareFilter(this, CompareType.lessOrEqual, Expression.dynamic(other));