IDSDropdownTitle constructor

const IDSDropdownTitle({
  1. Key? key,
  2. required String title,
  3. required String selectedValue,
  4. 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,
});