CalendarWeekRow constructor

const CalendarWeekRow({
  1. required DateTime initalDateTime,
  2. bool showOutOfMonthCells = true,
  3. required DateTime weekStartDateTime,
  4. double cellbetweenPadding = 0,
  5. Key? key,
  6. bool isExpanded = false,
  7. DateTime? selectedDate,
  8. required dynamic onTap(
    1. DateTime
    )?,
  9. DateTime? startDateLimit,
  10. DateTime? endDateLimit,
  11. dynamic onDisabledCellTap(
    1. DateTime
    )?,
  12. bool isEmptyonStart = false,
  13. List<String>? showOnlyFields,
  14. bool isDarkMode = false,
  15. EdgeInsets? cellMargin,
  16. EdgeInsets? cellPadding,
  17. Color? cellColors,
  18. Color? cellContentColor,
  19. CalendarCellDecorator? cellDecorator,
  20. CalendarCellDecorator? currentDayDecorator,
  21. bool showCurrentDay = false,
})

Implementation

const CalendarWeekRow({
  required this.initalDateTime,
  this.showOutOfMonthCells = true,
  required this.weekStartDateTime,
  this.cellbetweenPadding = 0,
  Key? key,
  this.isExpanded = false,
  this.selectedDate,
  required this.onTap,
  this.startDateLimit,
  this.endDateLimit,
  this.onDisabledCellTap,
  this.isEmptyonStart = false,
  this.showOnlyFields,
  this.isDarkMode = false,
  this.cellMargin,
  this.cellPadding,
  this.cellColors,
  this.cellContentColor,
  this.cellDecorator,
  this.currentDayDecorator,
  this.showCurrentDay = false,
}) : super(key: key);