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