check if the string str contains only letters (a-zA-Z).
str
bool isAlpha(String str) { return _alpha.hasMatch(str); }