startTime property

String get startTime

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

Implementation

String get startTime => _wrapped.startTime;
set startTime (String v)

Implementation

set startTime(String v) {
  _wrapped.startTime = v;
}