isAlphabetic property
bool
get
isAlphabetic
Check if the string contains only letters (a-zA-Z).
Implementation
bool get isAlphabetic => RegexUtils.alphabetic.hasMatch(this);
Check if the string contains only letters (a-zA-Z).
bool get isAlphabetic => RegexUtils.alphabetic.hasMatch(this);