ReportEvent.fromJson constructor

ReportEvent.fromJson(
  1. String json
)

Recreates a ReportEvent from a JSON string.

Implementation

factory ReportEvent.fromJson(String json) =>
    ReportEvent.fromMap(jsonDecode(json) as Map<String, dynamic>);