HttpDownloader constructor

const HttpDownloader({
  1. HttpDownloadPolicy policy = const HttpDownloadPolicy(),
  2. void onProgress(
    1. int bytesReceived,
    2. int? totalBytes
    )?,
})

Implementation

const HttpDownloader({
  this.policy = const HttpDownloadPolicy(),
  this.onProgress,
});