isChineseLetter static method

bool isChineseLetter(
  1. String ch
)

Implementation

static bool isChineseLetter(String ch) {
  if (ch.charCode >= 0x4E00 && ch.charCode <= 0x9FA5) return true;
  return false;
}