Filter.lessThan constructor Null safety
- String field,
- dynamic value
Filter where the field
value is less than the specified value
.
Implementation
factory Filter.lessThan(String field, value) {
return SembastFilterPredicate(field, FilterOperation.lessThan, value);
}