CalendarTile constructor

CalendarTile({
  1. VoidCallback? onDateSelected,
  2. DateTime? date,
  3. Widget? child,
  4. TextStyle? dateStyles,
  5. String? dayOfWeek,
  6. TextStyle? dayOfWeekStyle,
  7. bool isDayOfWeek = false,
  8. bool isSelected = false,
  9. bool inMonth = true,
  10. List<CleanCalendarEvent>? events,
  11. Color? selectedColor,
  12. Color? todayColor,
  13. Color? eventColor,
  14. Color? eventDoneColor,
})

Implementation

CalendarTile({
  this.onDateSelected,
  this.date,
  this.child,
  this.dateStyles,
  this.dayOfWeek,
  this.dayOfWeekStyle,
  this.isDayOfWeek: false,
  this.isSelected: false,
  this.inMonth: true,
  this.events,
  this.selectedColor,
  this.todayColor,
  this.eventColor,
  this.eventDoneColor,
});