RecorderConfig constructor

RecorderConfig({
  1. bool? shouldShowFaceOutline = false,
  2. bool? isLiveStreaming = false,
  3. bool? shouldAutoStartRecording = false,
  4. int? startDelay = defaultStartDelay,
  5. bool? blurMode = false,
  6. bool? shouldSendImmediately = true,
  7. bool? shouldDisableCameraSwitch = false,
  8. int? videoQuality = 0,
  9. int? facing = 0,
  10. int? maxDuration = 0,
  11. bool? shouldEnableCoverShot = true,
  12. bool? shouldConfirmStopRecording = true,
  13. bool? isPausedMode = true,
  14. StopRecordingConfirmationDialogConfig? stopRecordingConfirmationDialogConfig,
  15. RecorderEventsListener? eventsListener,
})

Implementation

RecorderConfig({
  this.shouldShowFaceOutline = false,
  this.isLiveStreaming = false,
  this.shouldAutoStartRecording = false,
  this.startDelay = defaultStartDelay,
  this.blurMode = false,
  this.shouldSendImmediately = true,
  this.shouldDisableCameraSwitch = false,
  this.videoQuality = 0,
  this.facing = 0,
  this.maxDuration = 0,
  this.shouldEnableCoverShot = true,
  this.shouldConfirmStopRecording = true,
  this.isPausedMode = true,
  StopRecordingConfirmationDialogConfig?
      stopRecordingConfirmationDialogConfig,
  RecorderEventsListener? eventsListener,
});