EndsWithCondition constructor

const EndsWithCondition({
  1. required int property,
  2. required String value,
  3. bool caseSensitive = true,
})

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,
});