DropDown<T> constructor

const DropDown<T>({
  1. Key? key,
  2. required Widget child,
  3. required DropdownWidgetBuilder<T> dropdownWidgetBuilder,
  4. ValueChanged<T?>? onResult,
  5. ValueChanged<bool>? onShow,
  6. GlobalKey<State<StatefulWidget>>? relativeKey,
})

Implementation

const DropDown({
  super.key,
  required this.child,
  required this.dropdownWidgetBuilder,
  this.onResult,
  this.onShow,
  this.relativeKey,
});