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