BundleReport.fromJson constructor
Implementation
factory BundleReport.fromJson(Map<String, dynamic> json) {
return BundleReport(
status: json["status"],
typeReportMap: json["typeReportMap"] == null
? null
: TypeReportMap.fromJson(json["typeReportMap"]),
stats: json["stats"] == null ? null : Stats.fromJson(json["stats"]),
);
}