DateTimePicker constructor

const DateTimePicker({
  1. Key? key,
  2. DateTime? initialDateTime,
  3. DateTime? minDate,
  4. DateTime? maxDate,
  5. bool use24HourFormat = true,
})

Implementation

const DateTimePicker({
  super.key,
  this.initialDateTime,
  this.minDate,
  this.maxDate,
  this.use24HourFormat = true,
});