fromJson static method
Inherited by: ReportReasonChildAbuse ReportReasonCopyright ReportReasonCustom ReportReasonFake ReportReasonIllegalDrugs ReportReasonPersonalDetails ReportReasonPornography ReportReasonSpam ReportReasonUnrelatedLocation ReportReasonViolence
Implementation
static ReportReasonCopyright? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const ReportReasonCopyright();
}