CustomCalendarView constructor

const CustomCalendarView({
  1. Key? key,
  2. DateTime? minimumDate,
  3. DateTime? maximumDate,
  4. DateTime? initialEndDate,
  5. Color? leftArrowColor,
  6. Color? rightArrowColor,
  7. DateTime? initialStartDate,
  8. Color? weekDaysTextColor,
  9. Color? monthYearTextColor,
  10. dynamic startEndDateChange(
    1. DateTime?,
    2. DateTime?
    )?,
  11. Color? selectedRangeColor,
})

Implementation

const CustomCalendarView({
  Key? key,
  this.minimumDate,
  this.maximumDate,
  this.initialEndDate,
  this.leftArrowColor,
  this.rightArrowColor,
  this.initialStartDate,
  this.weekDaysTextColor,
  this.monthYearTextColor,
  this.startEndDateChange,
  this.selectedRangeColor,
}) : super(key: key);