domainType property

DomainType? domainType

Specifies whether the network request is first-party or third-party to the domain from which it originated. If omitted, all requests are accepted.

Implementation

DomainType? get domainType => _wrapped.domainType?.let(DomainType.fromJS);
void domainType=(DomainType? v)

Implementation

set domainType(DomainType? v) {
  _wrapped.domainType = v?.toJS;
}