BouncingWidget constructor

const BouncingWidget({
  1. Key? key,
  2. required Widget child,
  3. double offsetYaxis = 0.09,
  4. double offsetXaxis = 0,
  5. int milliSecondDuration = 400,
})

Implementation

const BouncingWidget(
    {Key? key,
    required this.child,
    this.offsetYaxis = 0.09,
    this.offsetXaxis = 0,
    this.milliSecondDuration = 400})
    : super(key: key);