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