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