static String? validateField(String? value) { if (value == null || value.isEmpty) { return '*'; } return null; }