FeedPlaylistPlayTrack constructor

FeedPlaylistPlayTrack({
  1. int? trackId,
  2. String? name,
  3. String? audioFile,
  4. String? fileHash,
  5. String? duration,
  6. String? title,
  7. String? artist,
  8. String? imageFile,
})

Returns a new FeedPlaylistPlayTrack instance.

Implementation

FeedPlaylistPlayTrack({
  this.trackId,
  this.name,
  this.audioFile,
  this.fileHash,
  this.duration,
  this.title,
  this.artist,
  this.imageFile,
});