DoubleTapPlayerView constructor

const DoubleTapPlayerView({
  1. Key? key,
  2. DoubleTapConfig? doubleTapConfig,
  3. Widget? child,
  4. SwipeConfig? swipeConfig,
})

Implementation

const DoubleTapPlayerView({
  Key? key,
  this.doubleTapConfig,
  this.child,
  this.swipeConfig,
}) : enabledDoubleTap = doubleTapConfig != null,
      enabledSwipe = swipeConfig != null, super(key: key);