cancel static method
Cancel HLS download.
Implementation
static void cancel(String url) {
final state = _downloads[url];
if (state != null) {
state.cancelled = true;
_downloads.remove(url);
}
}
Cancel HLS download.
static void cancel(String url) {
final state = _downloads[url];
if (state != null) {
state.cancelled = true;
_downloads.remove(url);
}
}