PlaylistClientDTO constructor

PlaylistClientDTO({
  1. int? playListId,
  2. required String name,
  3. String? imageFile,
  4. required TimeOfDay? timeOfDay,
  5. bool? download,
  6. List<CompanyTypePlaylistDTO>? companyTypePlaylists = const [],
  7. List<GenrePlaylistDTO>? genrePlaylists = const [],
  8. List<TrackPlayListDTO>? trackPlayLists = const [],
  9. List<PlaylistFeedDTO>? playlistFeeds = const [],
})

Returns a new PlaylistClientDTO instance.

Implementation

PlaylistClientDTO({
  this.playListId,
  required this.name,
  this.imageFile,
  required this.timeOfDay,
  this.download,
  this.companyTypePlaylists = const [],
  this.genrePlaylists = const [],
  this.trackPlayLists = const [],
  this.playlistFeeds = const [],
});