DropDown constructor

const DropDown({
  1. Key? key,
  2. required double height,
  3. required double width,
  4. required List<ComboItem> items,
  5. TextEditingController? controller,
  6. double? menuMaxHeight,
})

Implementation

const DropDown({
  super.key,
  required this.height,
  required this.width,
  required this.items,
  this.controller,
  this.menuMaxHeight,
});