MatchesCondition constructor

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

Filters the results to only include objects where the property matches the wildcard.

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

Implementation

const MatchesCondition({
  required this.property,
  required this.wildcard,
  this.caseSensitive = true,
});