判断是否为纯中文,不是返回false Determine whether it is pure Chinese, not return false
static bool isChinese(String str) { return RegExp(r"^[\u4e00-\u9fa5]+$").hasMatch(str); }