GenrePlaylist constructor

GenrePlaylist({
  1. int? genreId,
  2. GenreTrackGenre? genre,
  3. int? playListId,
  4. CompanyTypePlaylistPlaylist? playlist,
})

Returns a new GenrePlaylist instance.

Implementation

GenrePlaylist({
  this.genreId,
  this.genre,
  this.playListId,
  this.playlist,
});