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