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