removeAllWhitespace method
The string without any whitespace.
Implementation
String removeAllWhitespace() {
// Remove all white space.
return replaceAll(RegExp(r"\s+"), "");
}
The string without any whitespace.
String removeAllWhitespace() {
// Remove all white space.
return replaceAll(RegExp(r"\s+"), "");
}