How do you save a download on flutter?

Directory generalDownloadDir = Directory(‘/storage/emulated/0/Download’); if you write whatever file you are trying to save to that directory, it will show up in the Downloads folder in any standard file manager application, rather than just the application-specific directory that the path_provider pkg provides.

Read more