endTime property

String? get endTime

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

Implementation

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

Implementation

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