Returns true if str contains only ASCII alphanumeric characters (a–z, A–Z, 0–9).
true
str
bool isAlphaNumeric(String str) => alphaNumericReg.hasMatch(str);