static Genre fromJsonDefault(Map<String, dynamic> json) { return Genre( id: json["name"], name: json["name"], description: json["description"], ); }