toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final comments = this.comments;
final language = this.language;
final reasonId = this.reasonId;
final secondaryReasonId = this.secondaryReasonId;
final videoId = this.videoId;
return {
'comments': ?comments,
'language': ?language,
'reasonId': ?reasonId,
'secondaryReasonId': ?secondaryReasonId,
'videoId': ?videoId,
};
}