isChinese static method

bool isChinese(
  1. String str
)

判断是否为纯中文,不是返回false

Implementation

static bool isChinese(String str) {
  return RegExp("[\\u4e00-\\u9fa5]+").hasMatch(str);
}