Есть ли способ преобразовать файл HTML в файл ввода-вывода в Dart / Flutter?
Может ли кто-нибудь завершить эту функцию, чтобы вернуть файл dart io (https://api.dart.dev/stable/2.9.2/dart-io/dart-io-library.html) из dart HTML (https://api.dart.dev/stable/2.9.2/dart-html/dart-html-library.html) файл?
import 'dart:io' as io;
import 'dart:html' as html;
io.File convertToIoFile(html.File htmlFile) {
// return htmlFile as ioFile ?
}