FilterRule constructor

FilterRule({
  1. required String nameSection,
  2. String? exactMatch,
  3. RegExp? regex,
  4. String? headerExactMatch,
  5. RegExp? headerRegex,
  6. bool strict = false,
})

Implementation

FilterRule(
    {required this.nameSection,
    this.exactMatch,
    this.regex,
    this.headerExactMatch,
    this.headerRegex,
    this.strict = false});