FilterCondition.between constructor
const
FilterCondition.between({})
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 FilterCondition.between({
required this.property,
Object? lower,
bool includeLower = true,
Object? upper,
bool includeUpper = true,
this.caseSensitive = true,
this.epsilon = Query.epsilon,
}) : value1 = lower,
include1 = includeLower,
value2 = upper,
include2 = includeUpper,
type = FilterConditionType.between,
super._();