CameraValue constructor

const CameraValue({
  1. bool? isInitialized,
  2. String? errorDescription,
  3. Size? previewSize,
  4. int? previewQuarterTurns,
  5. bool? isRecordingVideo,
  6. bool? isTakingPicture,
  7. bool? isStreamingImages,
  8. bool? isStreamingVideoRtmp,
  9. dynamic event,
  10. bool? isRecordingPaused,
  11. bool? isStreamingPaused,
})

Implementation

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