cancelDownload static method
Implementation
static void cancelDownload(String cacheKey) {
if (_operations.containsKey(cacheKey)) {
_operations[cacheKey]?.cancel();
_operations.remove(cacheKey);
}
}
static void cancelDownload(String cacheKey) {
if (_operations.containsKey(cacheKey)) {
_operations[cacheKey]?.cancel();
_operations.remove(cacheKey);
}
}