protectedContentEnabled property

ChromeSetting? get protectedContentEnabled

Available on Windows and ChromeOS only: If enabled, Chrome provides a unique ID to plugins in order to run protected content. The value of this preference is of type boolean, and the default value is true.

Implementation

ChromeSetting? get protectedContentEnabled =>
    _wrapped.protectedContentEnabled?.let(ChromeSetting.fromJS);
set protectedContentEnabled (ChromeSetting? v)

Implementation

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