PickerPlusMonthPickerController constructor

PickerPlusMonthPickerController({
  1. required DateTime minDate,
  2. required DateTime maxDate,
  3. DateTime? initialDate,
  4. DateTime? selectedDate,
})

Implementation

PickerPlusMonthPickerController({
  required this.minDate,
  required this.maxDate,
  this.initialDate,
  this.selectedDate,
});