removeWhitespace property

String get removeWhitespace

移除所有空白字符

Implementation

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