removeWhiteSpace method
Removes all white space characters from the string
Implementation
String removeWhiteSpace() {
return replaceAll(RegExp(r'\s+'), '');
}
Removes all white space characters from the string
String removeWhiteSpace() {
return replaceAll(RegExp(r'\s+'), '');
}