LzDatePicker constructor

const LzDatePicker({
  1. Key? key,
  2. DateTime? initDate,
  3. DateTime? minDate,
  4. DateTime? maxDate,
  5. DatePickerStyle? style,
  6. String? format,
  7. bool withTime = false,
})

Constructs a LzDatePicker widget with optional parameters.

Implementation

const LzDatePicker(
    {super.key,
    this.initDate,
    this.minDate,
    this.maxDate,
    this.style,
    this.format,
    this.withTime = false});