GanttChartDefaultDayHeader constructor

const GanttChartDefaultDayHeader({
  1. Key? key,
  2. required DateTime date,
  3. required bool isHoliday,
  4. Color? color,
  5. Color? backgroundColor,
  6. BoxBorder? border,
  7. WidgetBuilder? widgetBuilder,
})

Implementation

const GanttChartDefaultDayHeader({
  Key? key,
  required this.date,
  required this.isHoliday,
  this.color,
  this.backgroundColor,
  this.border,
  this.widgetBuilder,
}) : super(key: key);