I am making flutter web app that should generate a file from user data. And have the option to download the output file.
But I can not find any options/packages whic
A good workaround is to open the hosted file in a new tab using
import 'dart:html' as html; openInANewTab(url){ html.window.open(url, 'PlaceholderName'); }
Fits well for my use case.