isAsciiDigit property

bool get isAsciiDigit

Implementation

bool get isAsciiDigit =>
    isNotEmpty &&
    codeUnits.length == 1 &&
    (_between(codeUnitAt(0), 0x30, 0x39));