DownloadInfo constructor

DownloadInfo({
  1. int? maxLength,
  2. String? path,
  3. double? planTime,
  4. int? currentLength,
  5. double? percent,
  6. int? id,
  7. DownloadStatus? status,
  8. double? speed,
})

Implementation

DownloadInfo(
    {this.maxLength,
    this.path,
    this.planTime,
    this.currentLength,
    this.percent,
    this.id,
    this.status,
    this.speed});