Dart Documentationchrome.typesTypesGetParams

TypesGetParams class

class TypesGetParams extends ChromeObject {
 TypesGetParams({bool incognito}) {
   if (incognito != null) this.incognito = incognito;
 }
 TypesGetParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 /**
  * Whether to return the value that applies to the incognito session (default
  * false).
  */
 bool get incognito => jsProxy['incognito'];
 set incognito(bool value) => jsProxy['incognito'] = value;
}

Extends

ChromeObject > TypesGetParams

Constructors

new TypesGetParams({bool incognito}) #

Create a new instance of a ChromeObject, which creates and delegates to a JsObject proxy.

docs inherited from ChromeObject
TypesGetParams({bool incognito}) {
 if (incognito != null) this.incognito = incognito;
}

new TypesGetParams.fromProxy(JsObject jsProxy) #

Create a new instance of a ChromeObject, which delegates to the given JsObject proxy.

docs inherited from ChromeObject
TypesGetParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

Properties

bool incognito #

Whether to return the value that applies to the incognito session (default false).

bool get incognito => jsProxy['incognito'];
set incognito(bool value) => jsProxy['incognito'] = value;

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

Methods

JsObject toJs() #

inherited from ChromeObject
JsObject toJs() => jsProxy;

String toString() #

inherited from ChromeObject

Returns a string representation of this object.

docs inherited from Object
String toString() => jsProxy.toString();