DayCell constructor

const DayCell({
  1. Key? key,
  2. String number = '1',
  3. bool currentDay = false,
  4. bool selectedDay = false,
  5. bool isWeekend = false,
  6. bool dayInMonth = true,
  7. dynamic onTap(
    1. DateTime
    )?,
  8. CalendarCellDecorator? cellDecorator,
  9. bool showOutOfMonthCells = false,
  10. required DateTime dateTime,
  11. CalendarCellDecorator? currentDayDec,
})

Implementation

const DayCell({
  Key? key,
  this.number = '1',
  this.currentDay = false,
  this.selectedDay = false,
  this.isWeekend = false,
  this.dayInMonth = true,
  this.onTap,
  this.cellDecorator,
  this.showOutOfMonthCells = false,
  required this.dateTime,
  this.currentDayDec,
}) : super(key: key);