DownloadTask constructor

DownloadTask({
  1. String? taskId,
  2. DownloadTaskStatus? status,
  3. int? progress,
  4. String? url,
  5. String? filename,
  6. String? image,
  7. String? srt,
  8. String? name,
  9. String? savedDir,
  10. int? timeCreated,
})

Implementation

DownloadTask(
    {this.taskId,
    this.status,
    this.progress,
    this.url,
    this.filename,
    this.image,
    this.srt,
    this.name,
    this.savedDir,
    this.timeCreated});