DownloadProgress constructor

DownloadProgress({
  1. required String url,
  2. required int downloadedBytes,
  3. int? totalBytes,
  4. required bool isComplete,
})

Implementation

DownloadProgress({
  required this.url,
  required this.downloadedBytes,
  this.totalBytes,
  required this.isComplete,
});