lowerToUpper static method

int lowerToUpper(
  1. int codepoint
)

Implementation

static int lowerToUpper(int codepoint) =>
    isAlphabetLower(codepoint) ? codepoint - 32 : codepoint;