IOSVideoPlayer constructor

const IOSVideoPlayer({
  1. Key? key,
  2. required String videoUrl,
  3. double? width,
  4. double? height,
  5. BorderRadius? borderRadius,
  6. VoidCallback? onVideoComplete,
})

Implementation

const IOSVideoPlayer({
  super.key,
  required this.videoUrl,
  this.width,
  this.height,
  this.borderRadius,
  this.onVideoComplete,
});