download method

Future<void> download(
  1. String url,
  2. String savePath, {
  3. ProgressCallback? onReceiveProgress,
})

Implementation

Future<void> download(String url, String savePath, {ProgressCallback? onReceiveProgress}) async {
  await _dio.download(url, savePath, onReceiveProgress: onReceiveProgress);
}