Rank 2: Process
Hi! So I have the following problem. The user selects multiple files with file_picker package. I convert this to a List to upload it to appwrite bucket. But the Flutter SDK only provides "createFile", which means uploading only one file at a time. I don't feel like it's a good approach to just iterate over the List with a for-loop and upload each at once, because this drastically increases the server requests. Is there any better way to do this?