VideoTrack constructor

const VideoTrack({
  1. required String id,
  2. int? width,
  3. int? height,
  4. int? bitrate,
  5. String? label,
  6. bool isSelected = false,
})

Implementation

const VideoTrack({
  required this.id,
  this.width,
  this.height,
  this.bitrate,
  this.label,
  this.isSelected = false,
});