flutter_uploader
                                
                                 flutter_uploader copied to clipboard
                                
                                    flutter_uploader copied to clipboard
                            
                            
                            
                        Retry logic
How does this plugin handle failed uploads due to connectivity issues? From my understanding uploads are currently marked as failed and will not resume?
Yes that's correct, if upload failed due to connectivity, it will raise failed event.
Could this be adjusted with an exponential retry logic? Some files really must be uploaded - and the user will not want to re-upload manually if their internet connection is flaky.
in order to add above feature, upload probably requires some kind of flag or retry policy to be as parameters so uploader can decide whether to retry exponentially or stop at a certain number of failures. we can also probably introduce like downloader plugin to record and track upload task in the db.
OK. I will get to it at some point. Currently extending this plugin with support for raw uploads (not only multipart/form-data) and few other bits.
Thats great looking forward to your pull request :grinning:
@ened was this ever implemented?