lessThanOrEqual method

BooleanExpression lessThanOrEqual(
  1. Expression other
)

Checks if this expression is less than or equal to another expression

Implementation

BooleanExpression lessThanOrEqual(Expression other) {
  return _LessThanOrEqualExpression(this, other);
}