Dart Documentationchrome.identityWebAuthFlowDetails

WebAuthFlowDetails class

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

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

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

Extends

ChromeObject > WebAuthFlowDetails

Constructors

new WebAuthFlowDetails({String url, bool interactive}) #

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

docs inherited from ChromeObject
WebAuthFlowDetails({String url, bool interactive}) {
 if (url != null) this.url = url;
 if (interactive != null) this.interactive = interactive;
}

new WebAuthFlowDetails.fromProxy(JsObject jsProxy) #

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

docs inherited from ChromeObject
WebAuthFlowDetails.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

String url #

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