isAlpha property

bool get isAlpha

Returns true if the string only contains letters.

Implementation

bool get isAlpha => _alphaRegExp.hasMatch(this);