markAsNotStarted method

void markAsNotStarted()

Marks this Downloading as not started.

Implementation

void markAsNotStarted() {
  if (status.value == DownloadStatus.isFinished) {
    status.value = DownloadStatus.notStarted;
    file = null;
  }
}