JalaliTableCalendarOption constructor

JalaliTableCalendarOption({
  1. TextStyle? daysOfWeekStyle,
  2. bool showHeader = true,
  3. bool showHeaderArrows = true,
  4. TextStyle? headerStyle,
  5. TextStyle? daysStyle,
  6. Color? currentDayColor,
  7. Color? selectedDayColor,
  8. Color? selectedDayShapeColor,
  9. List<String>? daysOfWeekTitles,
  10. EdgeInsets? headerPadding,
})

Implementation

JalaliTableCalendarOption({
  this.daysOfWeekStyle,
  this.showHeader = true,
  this.showHeaderArrows = true,
  this.headerStyle,
  this.daysStyle,
  this.currentDayColor,
  this.selectedDayColor,
  this.selectedDayShapeColor,
  this.daysOfWeekTitles,
  this.headerPadding,
}) : assert(daysOfWeekTitles == null || daysOfWeekTitles.length == 7,
          "daysOfWeekTitles length must be 7");