check if the string str contains only letters and numbers
str
bool isAlphanumeric(String str) { return _alphanumeric.hasMatch(str); }