estimatedEndTime property

String? get estimatedEndTime

Estimated time when the download will complete in ISO 8601 format. May be passed directly to the Date constructor: chrome.downloads.search({}, function(items){items.forEach(function(item){if (item.estimatedEndTime) console.log(new Date(item.estimatedEndTime))})})

Implementation

String? get estimatedEndTime => _wrapped.estimatedEndTime;
set estimatedEndTime (String? v)

Implementation

set estimatedEndTime(String? v) {
  _wrapped.estimatedEndTime = v;
}