CustomDropDown constructor

const CustomDropDown({
  1. Key? key,
  2. String? value = "",
  3. required List<Map<String, String>> options,
  4. required String hintText,
  5. String? labelText,
  6. dynamic onChanged(
    1. dynamic
    )?,
})

Implementation

const CustomDropDown(
    {super.key,
    this.value = "",
    required this.options,
    required this.hintText,
    this.labelText,
    this.onChanged});