CustomCalendarView constructor

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

Implementation

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