removeWhiteSpace method

String removeWhiteSpace()

Removes all white space characters from the string

Implementation

String removeWhiteSpace() {
  return replaceAll(RegExp(r'\s+'), '');
}