NUIDropDownButton<T> constructor

NUIDropDownButton<T>({
  1. required NUIDropDownButtonBuilder buttonBuilder,
  2. required NUIItemDropDownButtonBuilder itemBuilder,
  3. NUIDropDownButtonController? controller,
  4. bool animate = true,
  5. NUIDropDownCustomPosition? customPosition,
  6. Color overlayColor = Colors.transparent,
  7. BoxDecoration? dropdownDecoration,
  8. Offset? positionOffset,
  9. double? customWidth,
  10. double? maxHeight,
  11. required List<T> selections,
  12. EdgeInsets? overallPadding,
})

Implementation

NUIDropDownButton({
  required this.buttonBuilder,
  required this.itemBuilder,
  this.controller,
  this.animate = true,
  this.customPosition,
  this.overlayColor = Colors.transparent,
  this.dropdownDecoration,
  this.positionOffset,
  this.customWidth,
  this.maxHeight,
  required this.selections,
  this.overallPadding
});