resume method

Future<void> resume()

Resume any current download, with the pending progress.

Implementation

Future<void> resume() async {
  _isActive();
  if (isDownloading) return;
  _inner = await Flowder.initDownload(_url, _options);
}