Dart Documentationchrome.identityTokenDetails

TokenDetails class

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

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

Extends

ChromeObject > TokenDetails

Constructors

new TokenDetails({bool interactive}) #

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

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

new TokenDetails.fromProxy(JsObject jsProxy) #

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

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

Properties

bool interactive #

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