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