Validate Alphabets
static bool alphabets(String value) { return new RegExp(_ALPHABETS_PATTERN).hasMatch(value); }