ArcaneDateTimePicker constructor
const
ArcaneDateTimePicker({
- DateTime? value,
- void onChanged()?,
- String? label,
- String? placeholder,
- bool disabled = false,
- String? error,
- bool clearable = true,
- DateTimePickerSize size = DateTimePickerSize.md,
- DateTime? minDate,
- DateTime? maxDate,
- bool disabledDates()?,
- String formatDate()?,
- bool use24Hour = false,
- int minuteInterval = 1,
- bool showSeconds = false,
- Key? key,
Implementation
const ArcaneDateTimePicker({
this.value,
this.onChanged,
this.label,
this.placeholder,
this.disabled = false,
this.error,
this.clearable = true,
this.size = DateTimePickerSize.md,
this.minDate,
this.maxDate,
this.disabledDates,
this.formatDate,
this.use24Hour = false,
this.minuteInterval = 1,
this.showSeconds = false,
super.key,
}) : mode = DateTimePickerMode.dateTime,
timeValue = null,
onDateChanged = null,
onTimeChanged = null;