SongInformation constructor

SongInformation({
  1. required Album album,
  2. required Song song,
  3. required Artist artist,
})

Implementation

SongInformation(
    {required this.album, required this.song, required this.artist});