VideoTrack constructor

const VideoTrack({
  1. required String id,
  2. required bool isSelected,
  3. String? label,
  4. int? bitrate,
  5. int? width,
  6. int? height,
  7. double? frameRate,
  8. String? codec,
})

Constructs an instance of VideoTrack.

Implementation

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