CustomVideoPlayer constructor

const CustomVideoPlayer({
  1. Key? key,
  2. required Uri videoUrl,
  3. required String url,
  4. dynamic downloadVideo({
    1. required dynamic stopLoading(),
    2. required String url,
    })?,
})

Implementation

const CustomVideoPlayer(
    {super.key,
    required this.videoUrl,
    required this.url,
    this.downloadVideo});