You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to download a zipfile and store the resulting zip file to disk.
Options options= new Options(
responseType: ResponseType.STREAM
);
Dio dio = new Dio(options);
Response response=await dio.get(url);
File file = new File(outputDirectory+ filename);
await file.writeAsBytes(response.data);