JoyDropDown constructor

JoyDropDown({
  1. required Widget child,
  2. required Widget overlayWidget,
  3. JoyOverlayPosition? overlayPosition,
  4. Offset? overlayOffset,
  5. double? overlayWidth,
  6. double? overlayHeight,
})

If you don't enter this parameter, whatever is inside the constructor will assume the size of the button.

Implementation

// ignore: use_key_in_widget_constructors
JoyDropDown({
  required this.child,
  required this.overlayWidget,
  this.overlayPosition,
  this.overlayOffset,
  this.overlayWidth,
  this.overlayHeight,
});