CustomDropdownView constructor

CustomDropdownView({
  1. Key? key,
  2. @required Widget? defaultWidget,
  3. @required dynamic onTapDropdown(
    1. bool isDropdownOpened
    )?,
  4. BoxDecoration? decorationDropdown,
  5. double? elevationShadow,
  6. bool? isNeedCloseDropdown,
  7. @required List<Widget>? listWidgetItem,
})

Implementation

CustomDropdownView(
    {Key? key,
    @required this.defaultWidget,
    @required this.onTapDropdown,
    this.decorationDropdown,
    this.elevationShadow,
    this.isNeedCloseDropdown,
    @required this.listWidgetItem})
    : super(key: key);