RecordingValue constructor

const RecordingValue({
  1. bool? isInitialized,
  2. bool? isPause,
  3. bool? isRecording,
  4. String? errorDescription,
  5. dynamic event,
})

Implementation

const RecordingValue({
  this.isInitialized,
  this.isPause,
  this.isRecording,
  this.errorDescription,
  this.event,
});