CrashReport.fromJson constructor

CrashReport.fromJson(
  1. String json
)

Implementation

factory CrashReport.fromJson(String json) {
  return CrashReport.fromMap(jsonDecode(json));
}