NUIDropDownButtonContent<T> constructor

NUIDropDownButtonContent<T>({
  1. Color overlayColor = Colors.transparent,
  2. required Offset position,
  3. bool animate = true,
  4. EdgeInsets? padding,
  5. BoxDecoration? decoration,
  6. BoxConstraints? boxConstraints,
  7. double? width,
  8. required List<T> selections,
  9. required NUIItemDropDownButtonBuilder<T> itemBuilder,
  10. required NUIDropDownButtonController controller,
})

Implementation

NUIDropDownButtonContent({
  this.overlayColor = Colors.transparent,
  required this.position,
  this.animate = true,
  this.padding,
  this.decoration,
  this.boxConstraints,
  this.width,
  required this.selections,
  required this.itemBuilder,
  required this.controller
});