removeWhitespace method

String removeWhitespace()

Implementation

String removeWhitespace() {
  return replaceAll(' ', '');
}