class Song { final String pic; final String artistPic; final String title; final String artist; final String musicurl; final int id; final bool likes; final 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}); }