factory Genre.fromJson(Map<String, dynamic> json) { return Genre( id: json['id'], name: json['name'], ); }