Filter.matchesRegExp constructor
- String field,
- RegExp regExp,
- {bool anyInList}
Filter field
value using regExp
regular expression.
If anyInList
is true, it means that if field is a list, a record matches
if any of the list item matches the pattern.
Implementation
factory Filter.matchesRegExp(String field, RegExp regExp, {bool anyInList}) {
return SembastMatchesFilter(field, regExp, anyInList);
}