ActionValue constructor

ActionValue({
  1. required ResolutionPreset resolutionPreset,
  2. required ImageFormatGroup imageFormatGroup,
  3. CameraDescription? cameraDescription,
  4. List<CameraDescription> cameras = const [],
  5. bool enableAudio = true,
  6. CameraType cameraType = CameraType.normal,
  7. FlashMode flashMode = FlashMode.off,
  8. bool isTakingPicture = false,
  9. bool isRecordingVideo = false,
  10. bool isRecordingPaused = false,
  11. bool isPlaygroundActive = false,
})

Implementation

ActionValue({
  required this.resolutionPreset,
  required this.imageFormatGroup,
  this.cameraDescription,
  this.cameras = const [],
  this.enableAudio = true,
  this.cameraType = CameraType.normal,
  this.flashMode = FlashMode.off,
  this.isTakingPicture = false,
  this.isRecordingVideo = false,
  this.isRecordingPaused = false,
  this.isPlaygroundActive = false,
});