TouchShutter constructor

const TouchShutter({
  1. Key? key,
  2. YoutubePlayerController? controller,
  3. bool disableDragSeek = false,
  4. required Duration timeOut,
})

Creates TouchShutter widget.

Implementation

const TouchShutter({
  super.key,
  this.controller,
  this.disableDragSeek = false,
  required this.timeOut,
});