toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alcoholContent = this.alcoholContent;
final restricted = this.restricted;
final videoGameRating = this.videoGameRating;
return {
'alcoholContent': ?alcoholContent,
'restricted': ?restricted,
'videoGameRating': ?videoGameRating,
};
}