resumeTaskByUrl method
Resumes a task by its URL.
Implementation
void resumeTaskByUrl(String url) {
String? taskId =
activeTasks.where((task) => task.url == url).firstOrNull?.id;
if (taskId != null) {
_isolatePool.notifyIsolate(taskId, DownloadStatus.DOWNLOADING);
}
}