isZh static method

bool isZh(
  1. String? zh
)

是否包含汉字

Implementation

static bool isZh(String? zh) {
  return '〇' == zh || matches(regexZh, zh);
}