BundleReport.fromJson constructor

BundleReport.fromJson(
  1. Map<String, dynamic> json
)

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"]),
  );
}