AnimatedHoverMenu constructor

AnimatedHoverMenu({
  1. Key? key,
  2. required List<Menu> headerTiles,
  3. required List<SubMenu> menuTiles,
  4. required HeaderPosition headerPosition,
  5. Widget? backgroundWidget,
  6. BoxDecoration? headerBoxDecoration,
  7. Color? headerTextColor,
  8. double? headerTextSize,
  9. BoxDecoration? menuBoxDecoration,
  10. Color? menuTextColor,
  11. double? menuTextSize,
  12. AnimationType? animationType,
})

Implementation

AnimatedHoverMenu({
  Key? key,
  required this.headerTiles,
  required this.menuTiles,
  required this.headerPosition,
  this.backgroundWidget,
  this.headerBoxDecoration,
  this.headerTextColor,
  this.headerTextSize,
  this.menuBoxDecoration,
  this.menuTextColor,
  this.menuTextSize,
  this.animationType,
}) : super(key: key);