isAlpha function

bool isAlpha(
  1. String str
)

check if the string is alpha

Implementation

bool isAlpha(String str) {
  return _alpha.hasMatch(str);
}