read method

Stream<List<int>> read()

The whole session as a byte stream: chunks concatenated in order, meta lines of chunks after the first are skipped.

Implementation

Stream<List<int>> read() async* {
  var first = true;
  for (final file in files) {
    if (first) {
      first = false;
      yield* file.openRead();
    } else {
      yield* _skipMetaLine(file);
    }
  }
}