minio-dart
minio-dart copied to clipboard
How can i create File from stream on web?
When getting files from Bucket with this code
File file = await stream.pipe(File(filePath).openWrite());
it works on iOS and Android perfectly.
But on the web release there is no path for creating File. How can i create File from stream on web?
Thanks.