ReportEvent.fromJson constructor
ReportEvent.fromJson(
- String json
Recreates a ReportEvent from a JSON string.
Implementation
factory ReportEvent.fromJson(String json) =>
ReportEvent.fromMap(jsonDecode(json) as Map<String, dynamic>);