CalendarOptions constructor

CalendarOptions({
  1. bool toggleViewType = false,
  2. ViewType viewType = ViewType.MONTHLY,
  3. Color? headerMonthBackColor,
  4. Color? headerMonthShadowColor,
  5. double? headerMonthElevation,
  6. ShapeBorder? headerMonthShape,
  7. String font = '',
  8. Color? bottomSheetBackColor = Colors.white,
  9. DateTime? weekStartDate,
  10. DateTime? weekEndDate,
})

Implementation

CalendarOptions(
    {this.toggleViewType = false,
    this.viewType = ViewType.MONTHLY,
    this.headerMonthBackColor,
    this.headerMonthShadowColor,
    this.headerMonthElevation,
    this.headerMonthShape,
    this.font = '',
    this.bottomSheetBackColor = Colors.white,
    this.weekStartDate,
    this.weekEndDate});