判断是否为纯中文,不是返回false
static bool isChinese(String str) { return RegExp("[\\u4e00-\\u9fa5]+").hasMatch(str); }