DropDownButton constructor

const DropDownButton({
  1. Key? key,
  2. required Function onChanged,
  3. required String value,
  4. required List<String> values,
  5. String? hintText,
  6. IconData? icon,
})

Implementation

const DropDownButton(
    {super.key, required this.onChanged,
    required this.value,
    required this.values,
    this.hintText,
    this.icon});