VideoControllerConfiguration constructor

const VideoControllerConfiguration({
  1. String? vo,
  2. String? hwdec,
  3. int? width,
  4. int? height,
  5. bool enableHardwareAcceleration = true,
})

VideoControllerConfiguration

Configurable options for customizing the VideoController behavior.

Implementation

const VideoControllerConfiguration({
  this.vo,
  this.hwdec,
  this.width,
  this.height,
  this.enableHardwareAcceleration = true,
});