lte function
Matches if the field is less than or equal to the given value.
Implementation
FilterExpr lte(String field, dynamic value) {
return FilterLte(field, value);
}
Matches if the field is less than or equal to the given value.
FilterExpr lte(String field, dynamic value) {
return FilterLte(field, value);
}