StringMatcher constructor

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

Implementation

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