InlineVideoPlayer constructor

const InlineVideoPlayer({
  1. Key? key,
  2. required InlineVideoPlayerController controller,
  3. BoxFit fit = BoxFit.contain,
})

Implementation

const InlineVideoPlayer({
  super.key,
  required this.controller,
  this.fit = BoxFit.contain,
});