DropdownDatePicker constructor
const
DropdownDatePicker({
- Key? key,
- String? labelTextDay = "Day",
- String? labelTextMonth = "Month",
- String? labelTextYears = "Year",
- String? hintTextDay,
- String? hintTextMonth,
- String? hintTextYears,
- required ValueChanged? selectedYear,
- required ValueChanged<
int?> selectedMonth, - 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,
});