DownloadProgress constructor

const DownloadProgress({
  1. required int bytesDownloaded,
  2. required int totalBytes,
  3. required DownloadProgressState state,
  4. DownloadProgressStage stage = DownloadProgressStage.downloading,
})

Implementation

const DownloadProgress({
  required this.bytesDownloaded,
  required this.totalBytes,
  required this.state,
  this.stage = DownloadProgressStage.downloading,
});