Dart Documentationchrome.historyHistoryDeleteUrlParams

HistoryDeleteUrlParams class

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

 /**
  * The URL to remove.
  */
 String get url => jsProxy['url'];
 set url(String value) => jsProxy['url'] = value;
}

Extends

ChromeObject > HistoryDeleteUrlParams

Constructors

new HistoryDeleteUrlParams({String url}) #

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

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

new HistoryDeleteUrlParams.fromProxy(JsObject jsProxy) #

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

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

Properties

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

String url #

The URL to remove.

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