ThaNativePlayerView constructor

const ThaNativePlayerView({
  1. Key? key,
  2. required ThaNativePlayerController controller,
  3. Widget? overlay,
  4. BoxFit boxFit = BoxFit.contain,
})

Implementation

const ThaNativePlayerView({
  super.key,
  required this.controller,
  this.overlay,
  this.boxFit = BoxFit.contain,
});