BaseTrack constructor

BaseTrack({
  1. String? id,
  2. String? title,
  3. String? language,
  4. dynamic raw,
})

Implementation

BaseTrack({
  this.id,
  this.title,
  this.language,
  this.raw,
});