Returns true if str contains only ASCII alphabetic characters (a–z, A–Z).
true
str
bool isAlpha(String str) => alphaReg.hasMatch(str);