DropDownMenuHeader constructor

const DropDownMenuHeader({
  1. Key? key,
  2. required DropDownMenuController menuController,
  3. required List<String> titles,
  4. double? headHeight,
  5. Color defaultColor = const Color(0xFF333333),
  6. Color clickColor = const Color(0xFF333333),
  7. AssetImage? drawableEndAssetImg,
  8. double? iconSize,
})

Implementation

const DropDownMenuHeader({
  Key? key,
  required this.menuController,
  required this.titles,
  this.headHeight,
  this.defaultColor = const Color(0xFF333333),
  this.clickColor = const Color(0xFF333333),
  // this.clickColor = const Color(0xFFFF00FF),
  this.drawableEndAssetImg,
  this.iconSize,
}) : super(key: key);