VideoPlayer constructor

const VideoPlayer({
  1. Key? key,
  2. required String videoUrl,
  3. Icon? playPauseIcon,
  4. Color? backIcon,
  5. Color? fullScreenBackground,
})

Implementation

const VideoPlayer(
    {super.key,
    required this.videoUrl,
    this.playPauseIcon,
    this.backIcon,
    this.fullScreenBackground});