Album constructor
Album({
- required String id,
- required String name,
- required String albumType,
- List<
String> ? availableMarkets, - required List<
Artist> artists, - required String releaseDate,
- required String releaseDatePrecision,
- required int totalTracks,
- required String spotifyUrl,
- String? href,
- String? type,
- String? uri,
- required List<
String> images,
Implementation
Album({
required this.id,
required this.name,
required this.albumType,
this.availableMarkets,
required this.artists,
required this.releaseDate,
required this.releaseDatePrecision,
required this.totalTracks,
required this.spotifyUrl,
this.href,
this.type,
this.uri,
required this.images,
});