removeAllWhiteSpace method
Removes all whitespace characters from the string.
Implementation
String removeAllWhiteSpace() =>
validate().replaceAll(RegExp(r"\s+\b|\b\s"), "");
Removes all whitespace characters from the string.
String removeAllWhiteSpace() =>
validate().replaceAll(RegExp(r"\s+\b|\b\s"), "");