CustomDropdown constructor

const CustomDropdown({
  1. required String title,
  2. required List<Map<String, dynamic>> options,
  3. required String name,
  4. required ValueChanged<String?> onChanged,
  5. String? selectedValue,
  6. Key? key,
})

Implementation

const CustomDropdown({
  required this.title,
  required this.options,
  required this.name,
  required this.onChanged,
  this.selectedValue,
  super.key,
});