dTrimAll method

String dTrimAll()

移除所有空格

Implementation

String dTrimAll() {
  return replaceAll(RegExp(r"\s+\b|\b\s"), "");
}