GrockBounceAnimation constructor

const GrockBounceAnimation({
  1. Key? key,
  2. required Widget child,
  3. Duration duration = const Duration(milliseconds: 1000),
  4. Curve curve = Curves.bounceOut,
  5. double value = 0.2,
})

Implementation

const GrockBounceAnimation({
  super.key,
  required this.child,
  this.duration = const Duration(milliseconds: 1000),
  this.curve = Curves.bounceOut,
  this.value = 0.2,
});