BouncingButton constructor

const BouncingButton({
  1. Key? key,
  2. required double? buttonWidth,
  3. required double? buttonHeight,
  4. required Duration? bouncingDuration,
  5. required Curve? curve,
  6. required VoidCallback? onClick,
  7. double? buttonBouncingWidth,
  8. Decoration? buttonDecoration,
  9. EdgeInsetsGeometry? buttonMargin,
  10. EdgeInsetsGeometry? buttonPadding,
  11. AlignmentGeometry? alignment,
  12. Widget? child,
})

Implementation

const BouncingButton({
  Key? key,
  required this.buttonWidth,
  required this.buttonHeight,
  required this.bouncingDuration,
  required this.curve,
  required this.onClick,
  this.buttonBouncingWidth,
  this.buttonDecoration,
  this.buttonMargin,
  this.buttonPadding,
  this.alignment,
  this.child,
}) : super(key: key);