pause method
Pause any current download.
Implementation
Future<void> pause() async {
  _isActive();
  await _inner.cancel();
  isDownloading = false;
}Pause any current download.
Future<void> pause() async {
  _isActive();
  await _inner.cancel();
  isDownloading = false;
}