DownloadProgress constructor

DownloadProgress({
  1. double? progress,
  2. bool? isComplete,
  3. String? error,
})

Implementation

DownloadProgress({
  this.progress,
  this.isComplete,
  this.error,
});