static String? validateEmptyCheck(String value) { if (value.trim().isEmpty) return emptyMessage; return null; }