downloadStream method
File Download Stream
Implementation
Stream<DownloadStreamProgress> downloadStream(
String path, {
required String savePath,
TClientToken? token,
Map<String, String>? query,
Map<String, String>? headers,
}) {
return httpDownloadStream(
this,
path,
savePath: savePath,
token: token,
headers: headers,
query: query,
);
}