FilterCondition.lessThan constructor
const
FilterCondition.lessThan({})
Filters the results to only include objects where the property is less
than value.
For lists, at least one of the values in the list has to match.
Implementation
const FilterCondition.lessThan({
required this.property,
required Object? value,
bool include = false,
this.caseSensitive = true,
this.epsilon = Query.epsilon,
}) : type = FilterConditionType.lessThan,
value1 = value,
include1 = include,
value2 = null,
include2 = false,
super._();