SimplifiedAlbum constructor
SimplifiedAlbum({
- required String id,
- required String name,
- required int totalTracks,
- required List<
Market> availableMarkets, - required List<
ImageModel> images, - required List<
SimplifiedArtist> artists,
Implementation
SimplifiedAlbum({
required this.id,
required this.name,
required this.totalTracks,
required this.availableMarkets,
required this.images,
required this.artists,
});