getStream method

  1. @override
Stream<List<int>> getStream(
  1. String path
)
override

Retrieves the file content as a stream.

Implementation

@override
Stream<List<int>> getStream(String path) {
  final file = _file(path);
  return file.openRead();
}