excludedResponseHeaders property
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();