DatePickerContentData constructor

DatePickerContentData({
  1. DateTime? initialDate,
  2. DateTime? firstDate,
  3. DateTime? lastDate,
  4. required DateTime selectedDate,
})

Implementation

DatePickerContentData({
  this.initialDate,
  this.firstDate,
  this.lastDate,
  required this.selectedDate,
});