DownloadProgress constructor

const DownloadProgress({
  1. required int downloadedBytes,
  2. required int totalBytes,
  3. required double progress,
  4. required String status,
})

Implementation

const DownloadProgress({
  required this.downloadedBytes,
  required this.totalBytes,
  required this.progress,
  required this.status,
});