markAsNotStarted method
Marks this Downloading as not started.
Implementation
void markAsNotStarted() {
if (status.value == DownloadStatus.isFinished) {
status.value = DownloadStatus.notStarted;
file = null;
}
}
Marks this Downloading as not started.
void markAsNotStarted() {
if (status.value == DownloadStatus.isFinished) {
status.value = DownloadStatus.notStarted;
file = null;
}
}