MyDayPicker constructor

const MyDayPicker(
  1. List<int>? slots,
  2. bool isAutoGenerated,
  3. int numberOfDays,
  4. Color selectedDateColor,
  5. Color unSelectedDateColor, {
  6. Key? key,
})

Implementation

const MyDayPicker(
  this.slots,
  this.isAutoGenerated,
  this.numberOfDays,
  this.selectedDateColor,
  this.unSelectedDateColor, {
  Key? key,
}) : super(key: key);