SetDetails constructor
SetDetails({
- required Object value,
- ChromeSettingScope? scope,
Implementation
SetDetails({
/// The value of the setting. <br/>Note that every setting has a specific
/// value type, which is described together with the setting. An extension
/// should _not_ set a value of a different type.
required Object value,
/// Where to set the setting (default: regular).
ChromeSettingScope? scope,
}) : _wrapped = $js.SetDetails(
value: value.jsify()!,
scope: scope?.toJS,
);