isAlpha property

bool get isAlpha

Checks if the string contains only letters (a-z, A-Z).

Implementation

bool get isAlpha {
  return _isAlpha(this);
}