download method

Future<String> download({
  1. required String savePath,
})

Implementation

Future<String> download({required String savePath}) async {
  return _ApiBaseHelper(requestApi: this).callDownload(savePath);
}