DownloadProgress constructor

const DownloadProgress({
  1. required String url,
  2. required double progress,
  3. required int bytesDownloaded,
})

Creates a new instance of DownloadProgress

Implementation

const DownloadProgress({
  required this.url,
  required this.progress,
  required this.bytesDownloaded,
});