download method

Future download(
  1. String path,
  2. String savePath
)

Implementation

Future<dynamic> download(String path, String savePath) async {
  return await dio.download(path, savePath);
}