DownloadResult constructor

DownloadResult({
  1. required int downloadedBytes,
  2. required bool isComplete,
  3. StreamSubscription<DownloadProgress>? subscription,
})

Implementation

DownloadResult({
  required this.downloadedBytes,
  required this.isComplete,
  this.subscription,
});