OnChangeDetails constructor
      
      OnChangeDetails({ 
    
    
- required Object value,
- required LevelOfControl levelOfControl,
- 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,
      );