excludedResponseHeaders property

List<String>? get excludedResponseHeaders

Rule does not match if the request has any of the specified headers. TODO(crbug,com/1141166): Add documentation once feature is complete.

Implementation

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

Implementation

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