removeAllWhitespace method

String removeAllWhitespace()

Implementation

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