TrackData constructor

TrackData({
  1. String? id,
  2. TrackType? type,
  3. String? language,
  4. String? label,
  5. int? bitrate,
  6. int? width,
  7. int? height,
})

Implementation

TrackData({
  this.id,
  this.type,
  this.language,
  this.label,
  this.bitrate,
  this.width,
  this.height,
});