isAlphabetLower static method

bool isAlphabetLower(
  1. int codepoint
)

Implementation

static bool isAlphabetLower(int codepoint) =>
    codepoint >= _startAlphabetLower && codepoint <= _endAlphabetLower;