removeBreakLines property
string
get
removeBreakLines
remove all break lines from the String.
Implementation
string get removeBreakLines {
if (isBlank) {
return blankIfNull;
}
return removeAny(breaklineChars);
}