TrackPlayList constructor

TrackPlayList({
  1. int? trackId,
  2. GenreTrackTrack? track,
  3. int? playListId,
  4. CompanyTypePlaylistPlaylist? playlist,
  5. int? index,
  6. bool? active,
})

Returns a new TrackPlayList instance.

Implementation

TrackPlayList({
  this.trackId,
  this.track,
  this.playListId,
  this.playlist,
  this.index,
  this.active,
});