rawPFileReadStreamFactory function

Stream<List<int>> rawPFileReadStreamFactory(
  1. PFile file
)

Implementation

Stream<List<int>> rawPFileReadStreamFactory(PFile file) {
  return Stream.fromIterable((file as RawPFile)._bytes!).chunked(1024);
}