VideoAudioTrack constructor

const VideoAudioTrack({
  1. required String id,
  2. required bool isSelected,
  3. String? label,
  4. String? language,
  5. int? bitrate,
  6. int? sampleRate,
  7. int? channelCount,
  8. String? codec,
})

Constructs an instance of VideoAudioTrack.

Implementation

const VideoAudioTrack({
  required this.id,
  required this.isSelected,
  this.label,
  this.language,
  this.bitrate,
  this.sampleRate,
  this.channelCount,
  this.codec,
});