isLetter static method

bool isLetter(
  1. int c
)

Implementation

static bool isLetter(int c) => isLowerCaseLetter(c) || isUpperCaseLetter(c);