utf8DecodeAndLineSplit method

Stream<String> utf8DecodeAndLineSplit()

Implementation

Stream<String> utf8DecodeAndLineSplit() {
  return cast<List<int>>().transform(
    utf8.decoder.fuse(const LineSplitterConverter()),
  );
}