DownloadProgress constructor

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

Implementation

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