Gestures constructor

const Gestures({
  1. Key? key,
  2. required AnimationController? animationController,
  3. dynamic onStoryPaused()?,
  4. dynamic onStoryUnpaused()?,
})

Implementation

const Gestures({
  Key? key,
  required this.animationController,
  this.onStoryPaused,
  this.onStoryUnpaused,
}) : super(key: key);