StringMatcher constructor

StringMatcher({
  1. String? contains,
  2. String? exact,
  3. bool? ignoreCase,
  4. String? prefix,
  5. RegexMatcher? safeRegex,
  6. String? suffix,
})

Implementation

StringMatcher({
  this.contains,
  this.exact,
  this.ignoreCase,
  this.prefix,
  this.safeRegex,
  this.suffix,
});