isAsciiLetter property

bool get isAsciiLetter

Whether this character code represents a letter (a-z, A-Z).

Implementation

bool get isAsciiLetter =>
    (this >= 0x41 && this <= 0x5A) || (this >= 0x61 && this <= 0x7A);