VideoConfig constructor

const VideoConfig({
  1. int? width,
  2. int? height,
  3. int? frameRate,
  4. String? facingMode,
  5. String? deviceId,
})

Implementation

const VideoConfig({
  this.width,
  this.height,
  this.frameRate,
  this.facingMode,
  this.deviceId,
});