cancel static method

void cancel(
  1. String url
)

Cancel HLS download.

Implementation

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