OnChangeDetails constructor

OnChangeDetails({
  1. required Object value,
  2. required LevelOfControl levelOfControl,
  3. bool? incognitoSpecific,
})

Implementation

OnChangeDetails({
  /// The value of the setting after the change.
  required Object value,

  /// The level of control of the setting.
  required LevelOfControl levelOfControl,

  /// Whether the value that has changed is specific to the incognito
  /// session.<br/>This property will _only_ be present if the user has
  /// enabled the extension in incognito mode.
  bool? incognitoSpecific,
}) : _wrapped = $js.OnChangeDetails(
        value: value.jsify()!,
        levelOfControl: levelOfControl.toJS,
        incognitoSpecific: incognitoSpecific,
      );