BetterPlayerTrack constructor

BetterPlayerTrack({
  1. required TrackType type,
  2. required int width,
  3. required int height,
  4. required int bitrate,
  5. double? frameRate,
  6. bool? isSupported,
  7. int? groupIndex,
  8. String? groupId,
  9. String? id,
  10. String? audioGroupId,
  11. String? mime,
  12. String? language,
  13. String? label,
})

Implementation

BetterPlayerTrack({
  required this.type,
  required this.width,
  required this.height,
  required this.bitrate,
  this.frameRate,
  this.isSupported,
  this.groupIndex,
  this.groupId,
  this.id,
  this.audioGroupId,
  this.mime,
  this.language,
  this.label,
});