RecordingState constructor

RecordingState({
  1. bool recording = false,
  2. bool stopping = false,
  3. bool diskFull = false,
  4. bool diskError = false,
  5. bool diskUnformatted = false,
  6. bool droppedFrames = false,
  7. int durationHours = 0,
  8. int durationMinutes = 0,
  9. int durationSeconds = 0,
  10. int durationFrames = 0,
  11. int timeAvailable = 0,
})

Implementation

RecordingState({
  this.recording = false,
  this.stopping = false,
  this.diskFull = false,
  this.diskError = false,
  this.diskUnformatted = false,
  this.droppedFrames = false,
  this.durationHours = 0,
  this.durationMinutes = 0,
  this.durationSeconds = 0,
  this.durationFrames = 0,
  this.timeAvailable = 0,
});