ShakeWidget constructor

const ShakeWidget({
  1. Key? key,
  2. required Widget child,
  3. required ShakeConstant shakeConstant,
  4. Duration? duration,
  5. bool autoPlay = false,
  6. bool enableWebMouseHover = true,
  7. dynamic onController(
    1. AnimationController controller
    )?,
})

Implementation

const ShakeWidget(
    {Key? key,
    required this.child,
    required this.shakeConstant,
    this.duration,
    this.autoPlay = false,
    this.enableWebMouseHover = true,
    this.onController
    })
    : super(key: key);