isremoveAllWhitespace method

String isremoveAllWhitespace()

Implementation

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