MediaVideoView constructor

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

Implementation

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