String? validateDob(String value) { if (value.isEmpty) { return "Please select DoB"; } else { return null; } }