blob: 4f1320ea24db04ba7e25bf86b167116b415a1bf3 [file] [log] [blame]
import 'package:file/local.dart';
Stream<List<int>> openRead(String path) {
const fs = LocalFileSystem();
return fs.file(path).openRead();
}