Returns true when value contains only ASCII letters.
value
bool isAlphaWord(String value) => RegExp(r'^[A-Za-z]+$').hasMatch(value);