removeWordSplitters property
Removes all word splitters from the String
.
Implementation
string get removeWordSplitters {
if (isBlank) {
return blankIfNull;
}
return removeAny(wordSplitters);
}
Removes all word splitters from the String
.
string get removeWordSplitters {
if (isBlank) {
return blankIfNull;
}
return removeAny(wordSplitters);
}