lte function

FilterExpr lte(
  1. String field,
  2. dynamic value
)

Matches if the field is less than or equal to the given value.

Implementation

FilterExpr lte(String field, dynamic value) {
  return FilterLte(field, value);
}