DeleteRangeRange constructor
Implementation
DeleteRangeRange({
/// Items added to history after this date, represented in milliseconds
/// since the epoch.
required double startTime,
/// Items added to history before this date, represented in milliseconds
/// since the epoch.
required double endTime,
}) : _wrapped = $js.DeleteRangeRange(
startTime: startTime,
endTime: endTime,
);