Flutter Web:将 dart:io 文件转换为 dart:html 文件
Flutter Web: Converting dart:io File to dart:html File
有没有办法将 dart:io 文件对象转换为 dart:html 文件?我尝试了 html.File file = dartFile as html.File
但它不起作用
没有。这两个文件对象完全无关。
我不知道有哪个平台同时提供 dart:io
和 dart:html
库,所以即使能够在同一个程序中导入两者也令人惊讶。
有没有办法将 dart:io 文件对象转换为 dart:html 文件?我尝试了 html.File file = dartFile as html.File
但它不起作用
没有。这两个文件对象完全无关。
我不知道有哪个平台同时提供 dart:io
和 dart:html
库,所以即使能够在同一个程序中导入两者也令人惊讶。