download method

Future<Response> download({
  1. ProgressCallback? onReceiveProgress,
})

Implementation

Future<Response> download({ProgressCallback? onReceiveProgress}) {
  return DioManager().dio.download(path, savePath, onReceiveProgress: onReceiveProgress);
}