IDSDropdownTitle constructor
const
IDSDropdownTitle({
- Key? key,
- required String title,
- required String selectedValue,
- required VoidCallback onTap,
Creates an IDSDropdownTitle widget.
title
is the heading or label for the dropdown.
selectedValue
is the current selected value displayed.
onTap
is the callback executed when the widget is tapped.
Implementation
const IDSDropdownTitle({
super.key,
required this.title,
required this.selectedValue,
required this.onTap,
});