isAlphabetic property

bool get isAlphabetic

Check if the string contains only letters (a-zA-Z).

Implementation

bool get isAlphabetic => RegexUtils.alphabetic.hasMatch(this);