CalendarDataTimeline constructor

CalendarDataTimeline({
  1. required List<CalendarContent> data,
  2. required HeaderSettings settings,
  3. String mobileDateSeparator = "to",
  4. required BodySettings bodySettings,
  5. Color? sundayColor,
})

Color choice for sunday color, leave it null if you want to highlight sunday as well.

Implementation

CalendarDataTimeline(
    {required this.data,
    required this.settings,
    this.mobileDateSeparator = "to",
    required this.bodySettings,
    this.sundayColor});