MyDayPicker constructor

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

Implementation

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