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