VideoPlayerPage constructor

VideoPlayerPage({
  1. Key? key,
  2. required String videoUrl,
  3. required int durationMax,
  4. bool isDownloadIcon = true,
  5. bool isShareIcon = true,
  6. CachedVideoPlayerPlusController? controller,
})

Implementation

VideoPlayerPage(
    {Key? key,
      required this.videoUrl,
      required this.durationMax,
      this.isDownloadIcon = true,
      this.isShareIcon = true,
      this.controller})
    : super(key: key);