GetCallbackDetails constructor

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

Implementation

GetCallbackDetails({
  /// The value of the setting.
  required Object value,

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

  /// Whether the effective value is specific to the incognito
  /// session.<br/>This property will _only_ be present if the [incognito]
  /// property in the [details] parameter of `get()` was true.
  bool? incognitoSpecific,
}) : _wrapped = $js.GetCallbackDetails(
        value: value.jsify()!,
        levelOfControl: levelOfControl.toJS,
        incognitoSpecific: incognitoSpecific,
      );