HistoryGetVisitsParams class
class HistoryGetVisitsParams extends ChromeObject { HistoryGetVisitsParams({String url}) { if (url != null) this.url = url; } HistoryGetVisitsParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy); /** * The URL for which to retrieve visit information. It must be in the format * as returned from a call to history.search. */ String get url => jsProxy['url']; set url(String value) => jsProxy['url'] = value; }
Extends
ChromeObject > HistoryGetVisitsParams
Constructors
new HistoryGetVisitsParams({String url}) #
Create a new instance of a ChromeObject
, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
HistoryGetVisitsParams({String url}) { if (url != null) this.url = url; }
new HistoryGetVisitsParams.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject
, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
HistoryGetVisitsParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
String url #
The URL for which to retrieve visit information. It must be in the format as returned from a call to history.search.
String get url => jsProxy['url'];
set url(String value) => jsProxy['url'] = value;
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();