WeekDayView constructor

const WeekDayView({
  1. Key? key,
  2. required List<Task> tasks,
  3. Color? taskCardColor,
  4. Color? taskTitleColor,
  5. Color? taskSubtitleColor,
  6. Color? highlightTextColor,
  7. Color? highlightBackgroundColor,
  8. Color? textColor,
  9. ScrollController? controller,
  10. ScrollPhysics? scrollPhysics,
  11. String locale = 'en_US',
})

Implementation

const WeekDayView(
    {Key? key,
    required this.tasks,
    this.taskCardColor,
    this.taskTitleColor,
    this.taskSubtitleColor,
    this.highlightTextColor,
    this.highlightBackgroundColor,
    this.textColor,
    this.controller,
    this.scrollPhysics,
    this.locale = 'en_US'})
    : super(key: key);