thirdPartyCookiesAllowed property

ChromeSetting get thirdPartyCookiesAllowed

If disabled, Chrome blocks third-party sites from setting cookies. The value of this preference is of type boolean, and the default value is true.

Implementation

ChromeSetting get thirdPartyCookiesAllowed =>
    ChromeSetting.fromJS(_wrapped.thirdPartyCookiesAllowed);
set thirdPartyCookiesAllowed (ChromeSetting v)

Implementation

set thirdPartyCookiesAllowed(ChromeSetting v) {
  _wrapped.thirdPartyCookiesAllowed = v.toJS;
}