incognitoSpecific property

bool? get incognitoSpecific

Whether the value that has changed is specific to the incognito session.
This property will only be present if the user has enabled the extension in incognito mode.

Implementation

bool? get incognitoSpecific => _wrapped.incognitoSpecific;
set incognitoSpecific (bool? v)

Implementation

set incognitoSpecific(bool? v) {
  _wrapped.incognitoSpecific = v;
}