bool containsAlphabetic(String text) { final RegExp regex = RegExp(r'[a-zA-Z]'); return regex.hasMatch(text); }