removeWhitespace property
String
get
removeWhitespace
Removes all whitespace from the string.
Implementation
String get removeWhitespace => replaceAll(RegExp(r'\s'), '');
Removes all whitespace from the string.
String get removeWhitespace => replaceAll(RegExp(r'\s'), '');