String? validateNotEmpty(String? value) { if (value == null || value.isEmpty) { return "lbl_required_field"; } return null; }