Dart Documentationchrome.serialOpenInfo

OpenInfo class

class OpenInfo extends ChromeObject {
 OpenInfo({int connectionId}) {
   if (connectionId != null) this.connectionId = connectionId;
 }
 OpenInfo.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 int get connectionId => jsProxy['connectionId'];
 set connectionId(int value) => jsProxy['connectionId'] = value;
}

Extends

ChromeObject > OpenInfo

Constructors

new OpenInfo({int connectionId}) #

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

docs inherited from ChromeObject
OpenInfo({int connectionId}) {
 if (connectionId != null) this.connectionId = connectionId;
}

new OpenInfo.fromProxy(JsObject jsProxy) #

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

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

Properties

int connectionId #

int get connectionId => jsProxy['connectionId'];
set connectionId(int value) => jsProxy['connectionId'] = 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();