FilterCondition.equalTo constructor
const
FilterCondition.equalTo()
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 FilterCondition.equalTo({
required this.property,
required Object? value,
this.caseSensitive = true,
this.epsilon = Query.epsilon,
}) : type = FilterConditionType.equalTo,
value1 = value,
include1 = true,
value2 = null,
include2 = false,
super._();