MediaTrack constructor

MediaTrack({
  1. int? id,
  2. TrackType? trackType,
  3. String? name,
  4. TrackSubtype? trackSubtype,
  5. String? contentId,
  6. String? language,
})

Implementation

MediaTrack({
  this.id,
  this.trackType,
  this.name,
  this.trackSubtype,
  this.contentId,
  this.language,
});