Hello!
First of all, thank you for the initiative of this project, unfortunately the only thing missing was the following question to be able to implement it in my project.
I was able to successfully upload an mp3 file, but when downloading this file it comes with the content "Instance of 'ByteStream'", and I cannot recover the bytes.
If anyone can help me with this issue, thank you in advance for your attention.
The code I'm using to download and the response:
var files = await driveService?.getAllFiles();
var testFile = files?.first;
var download = await driveService?.downloadFile(file: testFile!);


Hello!
First of all, thank you for the initiative of this project, unfortunately the only thing missing was the following question to be able to implement it in my project.
I was able to successfully upload an mp3 file, but when downloading this file it comes with the content "Instance of 'ByteStream'", and I cannot recover the bytes.
If anyone can help me with this issue, thank you in advance for your attention.
The code I'm using to download and the response: