removeAllWhitespace property

String get removeAllWhitespace

---------操作------------------------------ 移除所有空白字符(包括空格、制表符、换行符等)

Implementation

/// 移除所有空白字符(包括空格、制表符、换行符等)
String get removeAllWhitespace => replaceAll(RegExp(r'\s+'), '');