toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final complaintType = this.complaintType;
final countryRestrictions = this.countryRestrictions;
final dmca = this.dmca;
final localLegal = this.localLegal;
final restrictedUris = this.restrictedUris;
return {
'complaintType': ?complaintType,
'countryRestrictions': ?countryRestrictions,
'dmca': ?dmca,
'localLegal': ?localLegal,
'restrictedUris': ?restrictedUris,
};
}