FeedPlaylistsResponse constructor

FeedPlaylistsResponse({
  1. int? playListId,
  2. String? name,
  3. int? count,
  4. String? duration,
  5. String? timeOfDay,
  6. bool? shuffle,
  7. bool? active,
})

Returns a new FeedPlaylistsResponse instance.

Implementation

FeedPlaylistsResponse({
  this.playListId,
  this.name,
  this.count,
  this.duration,
  this.timeOfDay,
  this.shuffle,
  this.active,
});