static String? validateEmpty(String value, String label) { if (value.trim().isEmpty) return enter + label; return null; }