isAlpha property
bool
get
isAlpha
Checks if the string contains only letters (a-z, A-Z).
Implementation
bool get isAlpha {
return _isAlpha(this);
}
Checks if the string contains only letters (a-z, A-Z).
bool get isAlpha {
return _isAlpha(this);
}