openRead method
- String filePath
override
Implementation
@override
Stream<List<int>> openRead(String filePath) async* {
var (fs, rPath) = getFileSystemAndRelativePathByPath(filePath);
if (fs != null && rPath != null) {
yield* fs.openRead(rPath);
}
}