domains property

List<String>? get domains

The rule will only match network requests originating from the list of domains.

Implementation

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

Implementation

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