static String excludeWhiteSpace(String string) => string.split('').where((it) => !isWhitespace(it.codeUnitAt(0))).join();