GreaterCondition constructor
const
GreaterCondition({})
Filters the results to only include objects where the property is greater
than value
.
For lists, at least one of the values in the list has to match.
Implementation
const GreaterCondition({
required this.property,
required this.value,
this.epsilon = Filter.epsilon,
this.caseSensitive = true,
});