StartsWithCondition constructor
const
StartsWithCondition({})
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 StartsWithCondition({
required this.property,
required this.value,
this.caseSensitive = true,
});