getBatchDownloads method

List<DownloadTask?> getBatchDownloads(
  1. List<String> urls
)

Implementation

List<DownloadTask?> getBatchDownloads(List<String> urls) {
  return urls.map((e) => _cache[e]).toList();
}