Dart Documentationchrome.identityInvalidTokenDetails

InvalidTokenDetails class

class InvalidTokenDetails extends ChromeObject {
 InvalidTokenDetails({String token}) {
   if (token != null) this.token = token;
 }
 InvalidTokenDetails.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 String get token => jsProxy['token'];
 set token(String value) => jsProxy['token'] = value;
}

Extends

ChromeObject > InvalidTokenDetails

Constructors

new InvalidTokenDetails({String token}) #

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

docs inherited from ChromeObject
InvalidTokenDetails({String token}) {
 if (token != null) this.token = token;
}

new InvalidTokenDetails.fromProxy(JsObject jsProxy) #

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

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

Properties

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

String token #

String get token => jsProxy['token'];
set token(String value) => jsProxy['token'] = value;

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();