Dart Documentationchrome.historyHistoryDeleteRangeParams

HistoryDeleteRangeParams class

class HistoryDeleteRangeParams extends ChromeObject {
 HistoryDeleteRangeParams({var startTime, var endTime}) {
   if (startTime != null) this.startTime = startTime;
   if (endTime != null) this.endTime = endTime;
 }
 HistoryDeleteRangeParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 /**
  * Items added to history after this date, represented in milliseconds since
  * the epoch.
  */
 dynamic get startTime => jsProxy['startTime'];
 set startTime(var value) => jsProxy['startTime'] = jsify(value);

 /**
  * Items added to history before this date, represented in milliseconds since
  * the epoch.
  */
 dynamic get endTime => jsProxy['endTime'];
 set endTime(var value) => jsProxy['endTime'] = jsify(value);
}

Extends

ChromeObject > HistoryDeleteRangeParams

Constructors

new HistoryDeleteRangeParams({startTime, endTime}) #

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

docs inherited from ChromeObject
HistoryDeleteRangeParams({var startTime, var endTime}) {
 if (startTime != null) this.startTime = startTime;
 if (endTime != null) this.endTime = endTime;
}

new HistoryDeleteRangeParams.fromProxy(JsObject jsProxy) #

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

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

Properties

var endTime #

Items added to history before this date, represented in milliseconds since the epoch.

dynamic get endTime => jsProxy['endTime'];
set endTime(var value) => jsProxy['endTime'] = jsify(value);

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

var startTime #

Items added to history after this date, represented in milliseconds since the epoch.

dynamic get startTime => jsProxy['startTime'];
set startTime(var value) => jsProxy['startTime'] = jsify(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();