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