DayItem constructor

const DayItem({
  1. required bool isSelectedDay,
  2. required bool isCurrentDay,
  3. Widget? child,
  4. int day = 0,
  5. bool isWithinMonth = true,
  6. int nonFitEventCount = 0,
  7. bool isWithinRange = false,
  8. Key? key,
})

Implementation

const DayItem({
  required this.isSelectedDay,
  required this.isCurrentDay,
  this.child,
  this.day = 0,
  this.isWithinMonth = true,
  this.nonFitEventCount = 0,
  this.isWithinRange = false,
  super.key,
});