SimpleVideoSurface constructor

const SimpleVideoSurface({
  1. Key? key,
  2. required VideoPlayerController controller,
  3. required BoxFit fit,
  4. Alignment alignment = Alignment.center,
})

Implementation

const SimpleVideoSurface({
  super.key,
  required this.controller,
  required this.fit,
  this.alignment = Alignment.center,
});