CalendarPopupView constructor

const CalendarPopupView({
  1. Key? key,
  2. DateTime? initialStartDate,
  3. DateTime? initialEndDate,
  4. dynamic onApplyClick(
    1. DateTime,
    2. DateTime
    )?,
  5. dynamic onCancelClick()?,
  6. bool barrierDismissible = true,
  7. DateTime? minimumDate,
  8. DateTime? maximumDate,
  9. required CalendarConfig calendarConfig,
  10. bool? allowSameDate = true,
})

Implementation

const CalendarPopupView(
    {Key? key,
    this.initialStartDate,
    this.initialEndDate,
    this.onApplyClick,
    this.onCancelClick,
    this.barrierDismissible = true,
    this.minimumDate,
    this.maximumDate,
      required this.calendarConfig,
      this.allowSameDate = true
    })
    : super(key: key);