isAsciiDigit property

bool get isAsciiDigit

Whether this character code represents a digit (0-9).

Implementation

bool get isAsciiDigit => this >= 0x30 && this <= 0x39;