removeAllWhitespace method
Returns the string with all whitespace characters removed.
Implementation
String removeAllWhitespace() {
return replaceAll(RegExp(r'\s+'), '');
}
Returns the string with all whitespace characters removed.
String removeAllWhitespace() {
return replaceAll(RegExp(r'\s+'), '');
}