openRead method

  1. @override
Stream<List<int>> openRead(
  1. String filePath
)
override

Implementation

@override
Stream<List<int>> openRead(String filePath) {
  final nPath = join(root.path, filePath);
  return io.File(nPath).openRead();
}