CreateInfo class
class CreateInfo extends ChromeObject {
CreateInfo({int socketId}) {
if (socketId != null) this.socketId = socketId;
}
CreateInfo.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
int get socketId => jsProxy['socketId'];
set socketId(int value) => jsProxy['socketId'] = value;
}
Extends
ChromeObject > CreateInfo
Constructors
new CreateInfo({int socketId}) #
Create a new instance of a ChromeObject, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
CreateInfo({int socketId}) {
if (socketId != null) this.socketId = socketId;
}
new CreateInfo.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
CreateInfo.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
int socketId #
int get socketId => jsProxy['socketId'];
set socketId(int value) => jsProxy['socketId'] = value;
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();