去除所有空格 Remove all spaces
static String removeAllSpace(String str) { return str.replaceAll(RegExp(r'\s+'), ''); }