cancelAll method

void cancelAll()

Cancel all downloads.

Implementation

void cancelAll() {
  for (final sub in _activeDownloads.values) {
    sub.cancel();
  }
  _activeDownloads.clear();
  ProgressiveDownloader.cancelAll();
  HlsCacheManager.cancelAll();
}