isVowel static method

bool isVowel(
  1. int charCode
)

Returns true if charCode is a vowel (including latin characters).

Implementation

static bool isVowel(final int charCode) {
  return _latinVowels.contains(charCode);
}