Playlist constructor

Playlist({
  1. required String id,
  2. required String name,
  3. required String description,
  4. required bool isPublic,
  5. required bool isCollaborative,
  6. required String href,
  7. required String uri,
  8. required String spotifyUrl,
  9. required int trackCount,
  10. required User owner,
  11. required List<String> images,
})

Implementation

Playlist({
  required this.id,
  required this.name,
  required this.description,
  required this.isPublic,
  required this.isCollaborative,
  required this.href,
  required this.uri,
  required this.spotifyUrl,
  required this.trackCount,
  required this.owner,
  required this.images,
});