GenrePlaylistDTO constructor

GenrePlaylistDTO({
  1. int? genreId,
  2. int? playListId,
})

Returns a new GenrePlaylistDTO instance.

Implementation

GenrePlaylistDTO({
  this.genreId,
  this.playListId,
});