excludedValues property

List<String>? get excludedValues

If specified, the rule is not matched if the header exists but its value contains at least one element in this list.

Implementation

List<String>? get excludedValues =>
    _wrapped.excludedValues?.toDart.cast<String>().map((e) => e).toList();
set excludedValues (List<String>? v)

Implementation

set excludedValues(List<String>? v) {
  _wrapped.excludedValues = v?.toJSArray((e) => e);
}