lines property

Stream<String> lines

Returns a stream of UTF-8 lines emitted by this process.

Implementation

Stream<String> get lines =>
    transform(utf8.decoder).transform(const LineSplitter());