removeAllWhitespace method

String removeAllWhitespace()

Implementation

String removeAllWhitespace() {
  if (this == null) {
    return '';
  }
  return this!.replaceAll(RegExp(r'\s+'), '');
}