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.
|
class Song {
|
|
final String pic;
|
|
final String artistPic;
|
|
final String title;
|
|
final String artist;
|
|
final String musicurl;
|
|
|
|
Song( {required this.pic,required this.artistPic,required this.title, required this.artist, required this.musicurl});
|
|
}
|