excludedDomains property

List<String>? get excludedDomains

The rule will not match network requests originating from the list of excludedDomains.

Implementation

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

Implementation

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