clean property

String get clean

Removes all whitespace characters and collapses the string into a single line. Example: "Line 1\n Line 2" => "Line1Line2"

Implementation

String get clean => toOneLine.removeWhiteSpaces;