You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
374 B

11 months ago
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;
11 months ago
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});
11 months ago
}