MusicSheet.fromJson constructor

MusicSheet.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}