codeDigit method

bool codeDigit(
  1. int charCode
)

Implementation

bool codeDigit(int charCode) => charCode >= _code0 && charCode <= _code9;