static bool isChinese(String input) { if (input.isEmpty) return false; return RegExp(CHINESE_REGEX).hasMatch(input); }