A StreamTransformer that splits a String into individual lines.

A line is terminated by either a CR (U+000D), a LF (U+000A), a CR+LF sequence (DOS line ending), and a final non-empty line can be ended by the end of the string.

The returned lines do not contain the line terminators.

Inheritance
Implements

Constructors

LineSplitter()
const

Properties

hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

bind(Stream<String> stream) Stream
convert(String data) List<String>
Converts input and returns the result of the conversion.
startChunkedConversion(Sink<String> sink) StringConversionSink
Starts a chunked conversion. [...]
fuse<TT>(Converter<T, TT> other) Converter<S, TT>
Fuses this with other. [...]
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() String
Returns a string representation of this object.
inherited

Operators

operator ==(other) bool
The equality operator. [...]
inherited

Static Methods

split(String lines, [ int start = 0, int end ]) Iterable<String>
Split lines into individual lines. [...]