isValidChoCode function

bool isValidChoCode(
  1. int char
)

Checks that given character code is a valid cho jamo in the unicode table.

isValidChoCode('ㄷ'.codeUnitAt(0));    // true

Implementation

bool isValidChoCode(int char) {
  return _choCharCode.contains(char);
}