isDigit static method

bool isDigit(
  1. int codepoint
)

Implementation

static bool isDigit(int codepoint) =>
    codepoint >= _startDigit && codepoint <= _endDigit;