Filter.greaterThan constructor

Filter.greaterThan(
  1. String field,
  2. Object? value
)

Filter where the field is greater than the specified value

Implementation

factory Filter.greaterThan(String field, Object? value) {
  return SembastFilterPredicate(field, FilterOperation.greaterThan, value);
}