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