Capabilities constructor

Capabilities({
  1. required bool dynamicRecordings,
  2. required bool dynamicTracks,
  3. required List<String> encoding,
  4. required int maxRate,
  5. required int maxTotalRate,
  6. required int maxRecordings,
  7. required int maxRecordingJobs,
  8. required bool options,
  9. bool? metadataRecording,
  10. bool? supportedExportFileFormats,
  11. bool? eventRecording,
  12. String? beforeEventLimit,
  13. String? afterEventLimit,
})

Implementation

Capabilities({
  required this.dynamicRecordings,
  required this.dynamicTracks,
  required this.encoding,
  required this.maxRate,
  required this.maxTotalRate,
  required this.maxRecordings,
  required this.maxRecordingJobs,
  required this.options,
  this.metadataRecording,
  this.supportedExportFileFormats,
  this.eventRecording,
  this.beforeEventLimit,
  this.afterEventLimit,
});