IDSDropdownDesign constructor
const
IDSDropdownDesign({
- Key? key,
- required String title,
- required String selectedValue,
- required VoidCallback onTap,
Creates a dropdown field with a title and selected value display.
You must provide title
, selectedValue
, and onTap
.
Implementation
const IDSDropdownDesign({
super.key,
required this.title,
required this.selectedValue,
required this.onTap,
});