StartsWithCondition constructor

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

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