isAlpha property
bool
get
isAlpha
Returns true if the string only contains letters.
Implementation
bool get isAlpha => _alphaRegExp.hasMatch(this);
Returns true if the string only contains letters.
bool get isAlpha => _alphaRegExp.hasMatch(this);