MusicSheet.fromJson constructor
Implementation
factory MusicSheet.fromJson(Map<String, dynamic> json) {
return MusicSheet(
id: json['id'] as String,
name: json['name'] as String,
genre: json['id'] as String,
filePath: json['filePath'] as String,
uploadDate: json['uploadDate'] as String,
);
}