class Song { String pic; String artistPic; String title; String artist; String musicurl; int id; bool likes; bool collection; Song( {required this.pic, required this.artistPic, required this.title, required this.artist, required this.musicurl, required this.id, required this.likes, required this.collection}); }