bool isContainsChinese(String input) { RegExp mobile = new RegExp(r"[\u4e00-\u9fa5]+"); return mobile.hasMatch(input); }