CameraValue constructor

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

Implementation

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