removeAllWhitespace method
Removes all whitespace from the string.
Implementation
String removeAllWhitespace() => replaceAll(RegExp(r'\s+'), '');
Removes all whitespace from the string.
String removeAllWhitespace() => replaceAll(RegExp(r'\s+'), '');