NeatCleanCalendarTile constructor
      
      NeatCleanCalendarTile({ 
    
    
- VoidCallback? onDateSelected,
 - DateTime? date,
 - Widget? child,
 - TextStyle? dateStyles,
 - String? dayOfWeek,
 - TextStyle? dayOfWeekStyle,
 - bool isDayOfWeek = false,
 - bool isSelected = false,
 - bool inMonth = true,
 - List<
NeatCleanCalendarEvent> ? events, - Color? defaultDayColor,
 - Color? defaultOutOfMonthDayColor,
 - Color? selectedColor,
 - Color? selectedTodayColor,
 - Color? todayColor,
 - Color? eventColor,
 - Color? eventDoneColor,
 
Implementation
NeatCleanCalendarTile({
  this.onDateSelected,
  this.date,
  this.child,
  this.dateStyles,
  this.dayOfWeek,
  this.dayOfWeekStyle,
  this.isDayOfWeek = false,
  this.isSelected = false,
  this.inMonth = true,
  this.events,
  this.defaultDayColor,
  this.defaultOutOfMonthDayColor,
  this.selectedColor,
  this.selectedTodayColor,
  this.todayColor,
  this.eventColor,
  this.eventDoneColor,
});