VideoSource constructor

VideoSource({
  1. required VideoPlayerController video,
  2. List<VideoViewerAd>? ads,
  3. Map<String, VideoViewerSubtitle>? subtitle,
  4. String intialSubtitle = "",
  5. Tween<Duration>? range,
})

Implementation

VideoSource({
  required this.video,
  this.ads,
  this.subtitle,
  this.intialSubtitle = "",
  this.range,
});