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