NativeCameraView constructor

const NativeCameraView({
  1. Key? key,
  2. required dynamic onControllerCreated(
    1. CameraController controller
    ),
  3. CameraPreviewFit? cameraPreviewFit,
  4. bool? isFrontCamera,
  5. bool? bypassPermissionCheck,
  6. Widget? loadingWidget,
  7. CameraResolutionPreset? previewPreset,
  8. CameraResolutionPreset? capturePreset,
  9. CameraCaptureMode? captureMode,
})

Implementation

const NativeCameraView({
  super.key,
  required this.onControllerCreated,
  this.cameraPreviewFit,
  this.isFrontCamera,
  this.bypassPermissionCheck,
  this.loadingWidget,
  this.previewPreset,
  this.capturePreset,
  this.captureMode,
});