toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
json[r'hate'] = this.hate;
json[r'hate/threatening'] = this.hateSlashThreatening;
json[r'self-harm'] = this.selfHarm;
json[r'sexual'] = this.sexual;
json[r'sexual/minors'] = this.sexualSlashMinors;
json[r'violence'] = this.violence;
json[r'violence/graphic'] = this.violenceSlashGraphic;
return json;
}