MediaRecordingOptions constructor

const MediaRecordingOptions({
  1. String? mimeType,
  2. int? audioBitsPerSecond,
  3. int? videoBitsPerSecond,
  4. int? bitsPerSecond,
  5. Duration? timeslice,
  6. String? filename,
})

Creates recording options.

Implementation

const MediaRecordingOptions({
  this.mimeType,
  this.audioBitsPerSecond,
  this.videoBitsPerSecond,
  this.bitsPerSecond,
  this.timeslice,
  this.filename,
});