FlyOutMenu constructor

FlyOutMenu({
  1. Key? key,
  2. required List<Widget> buttons,
  3. FlyOutAnimation animation = FlyOutAnimation.flipperCard,
  4. IconData defaultIcon = Icons.add,
  5. IconData activeIcon = Icons.close,
  6. double buttonSpacing = 4.0,
})

Implementation

FlyOutMenu({
  Key? key,
  required this.buttons,
  this.animation = FlyOutAnimation.flipperCard,
  this.defaultIcon = Icons.add,
  this.activeIcon = Icons.close,
  this.buttonSpacing = 4.0,
}) : super(key: key);