static String? validateAutodialPurpose(String? value) { if (value == null || value.isEmpty) return 'Value cannot be empty'; return null; }