isDigit method

bool isDigit()

Returns true if this character is a digit (0-9).

Implementation

bool isDigit() => _isDigit(_value);