/// 字符串工具 extension StringUtil on String { List<String> toCharList() { return this.runes.map((e) => String.fromCharCode(e)).toList(); } }