lines method

Iterable<Line> lines()

Returns the collection of text lines.

Example: var lines = text.lines;

Implementation

Iterable<Line> lines() {
  return _lines.groups.map((group) => group.key);
}