IDSDropdownDesign constructor

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