VideoCarousel constructor

const VideoCarousel({
  1. Key? key,
  2. required List<String> videoUrls,
  3. double? width,
  4. double? height,
  5. BorderRadius? borderRadius,
})

Implementation

const VideoCarousel({
  super.key,
  required this.videoUrls,
  this.width,
  this.height,
  this.borderRadius,
});