ContainsCondition constructor

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

Filters the results to only include objects where the String property contains value.

For String lists, at least one of the values in the list has to match.

Implementation

const ContainsCondition({
  required this.property,
  required this.value,
  this.caseSensitive = true,
});