CameraConfig constructor

CameraConfig({
  1. CameraDirection cameraDirection = CameraDirection.front,
  2. CameraResolutionPreset resolution = CameraResolutionPreset.high,
  3. bool enableAudio = false,
})

Implementation

CameraConfig({
  this.cameraDirection = CameraDirection.front,
  this.resolution = CameraResolutionPreset.high,
  this.enableAudio = false,
});