TdDateTimePicker constructor

const TdDateTimePicker({
  1. Key? key,
  2. DateTime? initialValue,
  3. DateTime? start,
  4. DateTime? end,
  5. List<TdDateTimePickerMode> mode = TdDateTimePickerMode.values,
  6. ValueChanged<DateTime>? onChanged,
  7. TdPickerSelectedItemChange? onSelectedItemChanged,
})

Implementation

const TdDateTimePicker({
  super.key,
  this.initialValue,
  this.start,
  this.end,
  this.mode = TdDateTimePickerMode.values,
  this.onChanged,
  this.onSelectedItemChanged,
});