JumpingContainer constructor

const JumpingContainer({
  1. Key? key,
  2. required AnimationController controller,
  3. Widget? child,
})

Implementation

const JumpingContainer({
  Key? key,
  required AnimationController controller,
  this.child,
}) : super(key: key, listenable: controller);