MothDayView constructor

const MothDayView({
  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. Color? mothCardColor,
  10. Color? mothTextColor,
  11. ScrollController? controller,
  12. ScrollPhysics? scrollPhysics,
  13. String locale = 'en_US',
})

Implementation

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