FeedPlaylistResponse constructor

FeedPlaylistResponse({
  1. int? playListId,
  2. String? name,
  3. bool? shuffle,
  4. bool? active,
  5. int? count,
  6. String? duration,
  7. TimeOfDay? timeOfDay,
  8. List<FeedPlaylistTrack>? tracks = const [],
})

Returns a new FeedPlaylistResponse instance.

Implementation

FeedPlaylistResponse({
  this.playListId,
  this.name,
  this.shuffle,
  this.active,
  this.count,
  this.duration,
  this.timeOfDay,
  this.tracks = const [],
});