PlaylistItem constructor

PlaylistItem({
  1. List<Source>? sources,
  2. String? image,
  3. String? title,
  4. String? adschedule,
  5. List<Track>? tracks,
  6. String? file,
  7. String? description,
})

Implementation

PlaylistItem({
  this.sources,
  this.image,
  this.title,
  this.adschedule,
  this.tracks,
  this.file,
  this.description,
});