Album constructor

Album({
  1. required String name,
  2. required String artist,
  3. required String albumUrl,
  4. required String artUrl,
})

Creates a new Album.

Implementation

Album({
  required this.name,
  required this.artist,
  required this.albumUrl,
  required this.artUrl,
});