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