MyDropDownMenu constructor

MyDropDownMenu({
  1. Key? key,
  2. int initIdx = 0,
  3. List<String?>? list,
  4. ValueChanged<int>? onIdxChange,
  5. TextStyle? textStyle,
  6. double? height,
  7. Color? bgColor,
})

Implementation

MyDropDownMenu(
    {Key? key,
    this.initIdx = 0,
    this.list,
    this.onIdxChange,
    this.textStyle,
    this.height,
    this.bgColor})
    : super(key: key);