PlaylistEntity constructor

PlaylistEntity(
  1. int key,
  2. String playlistName,
  3. int playlistDateModified,
  4. int? playlistDateAdded,
  5. List<SongEntity> playlistSongs,
)

Implementation

PlaylistEntity(
  this.key,
  this.playlistName,
  this.playlistDateModified,
  this.playlistDateAdded,
  this.playlistSongs,
);