VideoPlayerWidget constructor

const VideoPlayerWidget({
  1. Key? key,
  2. required String videoUrl,
  3. Map<String, dynamic>? videoData,
  4. VoidCallback? onAddToCart,
  5. bool hasOutfitItems = false,
})

Implementation

const VideoPlayerWidget({
  super.key,
  required this.videoUrl,
  this.videoData,
  this.onAddToCart,
  this.hasOutfitItems = false,
});