toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final adult = this.adult;
final medical = this.medical;
final racy = this.racy;
final spoof = this.spoof;
final violence = this.violence;
return {
'adult': ?adult,
'medical': ?medical,
'racy': ?racy,
'spoof': ?spoof,
'violence': ?violence,
};
}