DownloadProgress constructor

DownloadProgress({
  1. required DownloadState state,
  2. double progress = 0,
  3. String? filePath,
  4. String? error,
})

Implementation

DownloadProgress({
  required this.state,
  this.progress = 0,
  this.filePath,
  this.error,
});