3
如何在Flutter Web应用程序中保存和下载文本文件
我是Flutter的新手,正在Flutter的Web应用程序中工作。我的要求是创建和下载文本文件。像下面 void getData() { List<int> bytes = utf8.encode('this is the text file'); print(bytes); // Need to download this with txt file. } 谁能帮我实现这一目标