AppDaysPicker constructor

const AppDaysPicker({
  1. required AppItemsHandler<Date> handler,
  2. required Date firstDate,
  3. required Date lastDate,
  4. bool selectableDatePredicate(
    1. Date
    )?,
  5. Widget dayBuilder(
    1. Widget child,
    2. Date date
    )?,
  6. ValueChanged<Date>? onDateChanged,
  7. String? tooltipBuilder(
    1. Date
    )?,
  8. bool enabled = true,
  9. DateRange? selectedDisplayRange,
  10. dynamic onDisplayedMonthChanged(
    1. MonthAndYear date
    )?,
  11. Date? initialDate,
  12. bool showTitle = true,
  13. Key? key,
})

Implementation

const AppDaysPicker({
  required this.handler,
  required this.firstDate,
  required this.lastDate,
  this.selectableDatePredicate,
  this.dayBuilder,
  this.onDateChanged,
  this.tooltipBuilder,
  this.enabled = true,
  this.selectedDisplayRange,
  this.onDisplayedMonthChanged,
  this.initialDate,
  this.showTitle = true,
  super.key,
});