StringMatcher constructor

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

Implementation

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