DropdownDatePicker constructor

const DropdownDatePicker({
  1. Key? key,
  2. String? labelTextDay = "Day",
  3. String? labelTextMonth = "Month",
  4. String? labelTextYears = "Year",
  5. String? hintTextDay,
  6. String? hintTextMonth,
  7. String? hintTextYears,
  8. required ValueChanged? selectedYear,
  9. required ValueChanged<int?> selectedMonth,
  10. required ValueChanged<int?> selectedDay,
})

Implementation

const DropdownDatePicker({
  super.key,
  this.labelTextDay = "Day",
  this.labelTextMonth = "Month",
  this.labelTextYears = "Year",
  this.hintTextDay,
  this.hintTextMonth,
  this.hintTextYears,
  required this.selectedYear,
  required this.selectedMonth,
  required this.selectedDay,
});