static String? timeValidator(TimeOfDay? value) { if (value == null) { return 'Please select time'; } return null; }