PlaylistFeedDTO constructor

PlaylistFeedDTO({
  1. int? playListId,
  2. int? feedId,
  3. int? index,
  4. bool? active,
  5. bool? shuffle,
})

Returns a new PlaylistFeedDTO instance.

Implementation

PlaylistFeedDTO({
  this.playListId,
  this.feedId,
  this.index,
  this.active,
  this.shuffle,
});