isAsciiLetterUppercase property
Implementation
bool get isAsciiLetterUppercase =>
isNotEmpty &&
codeUnits.length == 1 &&
(_between(codeUnitAt(0), 0x41, 0x5A));
bool get isAsciiLetterUppercase =>
isNotEmpty &&
codeUnits.length == 1 &&
(_between(codeUnitAt(0), 0x41, 0x5A));