MountainMenu constructor

const MountainMenu({
  1. Key? key,
  2. required Color color,
  3. required IconData menuIcon,
  4. required List<Widget> menus,
  5. required ValueChanged<int> onChange,
  6. required bool mini,
  7. double? mainButtonElevation,
  8. double? borderWidth,
  9. Duration? duration,
  10. Color? borderColor,
  11. Curve? curve,
  12. Color? buttonBackgroundColor,
  13. Color? iconColor,
})

Implementation

const MountainMenu(
    {Key? key,
    required this.color,
    required this.menuIcon,
    required this.menus,
    required this.onChange,
    required this.mini,
    this.mainButtonElevation,
    this.borderWidth,
    this.duration,
    this.borderColor,
    this.curve,
    this.buttonBackgroundColor,
    this.iconColor})
    : super(key: key);