lines property

List<String> get lines

Splits the string into a list of lines.

Implementation

List<String> get lines => split(RegExp(r'\r?\n'));