OverlayDropDown<T> constructor

const OverlayDropDown<T>({
  1. Key? key,
  2. required double height,
  3. required dynamic close(
    1. T? value
    ),
  4. required AnimationController animationController,
  5. required DropdownWidgetBuilder<T> builder,
})

Implementation

const OverlayDropDown({
  super.key,
  required this.height,
  required this.close,
  required this.animationController,
  required this.builder,
});