removeWhitespace property
String
get
removeWhitespace
Removes all whitespace, including internal.
Implementation
String get removeWhitespace => replaceAll(RegExp(r'\s+'), '');
Removes all whitespace, including internal.
String get removeWhitespace => replaceAll(RegExp(r'\s+'), '');