isDigit static method

bool isDigit(
  1. int byte
)

Implementation

static bool isDigit(int byte) => byte >= 0x30 && byte <= 0x39;