isVowelAt static method

bool isVowelAt(
  1. String value,
  2. int index
)

Returns true if the character at index in value is a vowel (including special latin characters). The value should be cleaned first (which optionally removes latin characters if they are not desired).

Implementation

static bool isVowelAt(final String value, final int index) {
  return isVowel(codeUnitAt(value, index));
}