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