Downloading.completed constructor

Downloading.completed(
  1. String? checksum,
  2. String filename,
  3. int? size,
  4. String path, {
  5. void onDownloaded(
    1. File
    )?,
})

Creates a completed Downloading.

Implementation

Downloading.completed(
  this.checksum,
  this.filename,
  this.size,
  String path, {
  this.onDownloaded,
}) {
  file = File(path);
  status.value = DownloadStatus.isFinished;
}