removeRules method

void removeRules(
  1. String key,
  2. Iterable<Matcher> rules
)

Removes all given rules.

Implementation

void removeRules(String key, Iterable<Matcher> rules) {
  rules.forEach((rule) => removeRule(key, rule));
}