CameraValue constructor

const CameraValue({
  1. bool? isInitialized,
  2. String? errorDescription,
  3. Size? previewSize,
  4. bool? isRecordingVideo,
  5. bool? isTakingPicture,
  6. bool? isStreamingImages,
  7. bool? autoFocusEnabled,
  8. FlashMode? flashMode,
  9. bool? isRecordingPaused,
})

Implementation

const CameraValue({
  this.isInitialized,
  this.errorDescription,
  this.previewSize,
  this.isRecordingVideo,
  this.isTakingPicture,
  this.isStreamingImages,
  this.autoFocusEnabled,
  this.flashMode,
  bool? isRecordingPaused,
}) : _isRecordingPaused = isRecordingPaused;