DownloadTaskStatus constructor

DownloadTaskStatus({
  1. required DownloadTaskState state,
  2. int? totalSize,
  3. int? countSize,
  4. String? errorContent,
  5. String? stackTraceContent,
})

Implementation

DownloadTaskStatus({
  required this.state,
  this.totalSize,
  this.countSize,
  this.errorContent,
  this.stackTraceContent,
});