Recording constructor

Recording({
  1. DriveDestination? driveDestination,
  2. String? endTime,
  3. String? name,
  4. String? startTime,
  5. String? state,
})

Implementation

Recording({
  this.driveDestination,
  this.endTime,
  this.name,
  this.startTime,
  this.state,
});