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