removeAllWhitespace method

String removeAllWhitespace()

The string without any whitespace.

Implementation

String removeAllWhitespace() {
  // Remove all white space.
  return replaceAll(RegExp(r"\s+"), "");
}