static String? validate(String? value) { if (value == null || value.isEmpty) { return ConectarDesignSystem.labels.requiredField; } return null; }