isAlpha method

bool isAlpha()

Implementation

bool isAlpha() {
  RegExp _numeric = RegExp(r'^[a-zA-Z]+$');
  return _numeric.hasMatch(this);
}