EcpDateTimePicker constructor

const EcpDateTimePicker({
  1. Key? key,
  2. DateTime? initDate,
  3. bool userSmartDialog = false,
  4. dynamic onDateChanged(
    1. DateTime
    )?,
  5. Validate<DateTime>? validate,
  6. String? format,
  7. int? minuteStep,
  8. String? title,
})

Implementation

const EcpDateTimePicker({
  super.key,
  this.initDate,
  this.userSmartDialog = false,
  this.onDateChanged,
  this.validate,
  this.format,
  this.minuteStep,
  this.title,
});