CameraConfig constructor

CameraConfig({
  1. String? captureResolution,
  2. String? defaultCamera,
  3. bool? enableFlipFramesLeftRight,
  4. bool? enableFlipFramesTopBottom,
  5. bool? enableTapToFocus,
  6. List<String>? fallbackCameras,
  7. double? focalLength,
  8. double? maxFocalLength,
  9. double? maxZoomRatio,
  10. String? pictureResolution,
  11. int? tapToFocusTimeoutMs,
  12. bool? zoomGesture,
  13. double? zoomRatio,
})

Implementation

CameraConfig({
  this.captureResolution,
  this.defaultCamera,
  this.enableFlipFramesLeftRight,
  this.enableFlipFramesTopBottom,
  this.enableTapToFocus,
  this.fallbackCameras,
  this.focalLength,
  this.maxFocalLength,
  this.maxZoomRatio,
  this.pictureResolution,
  this.tapToFocusTimeoutMs,
  this.zoomGesture,
  this.zoomRatio,
});