LatestVersionResponse.fromJson constructor

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

Implementation

factory LatestVersionResponse.fromJson(Map<String, dynamic> json) {
  return LatestVersionResponse(
    status: json["status"],
    validationReport: json["validationReport"] == null
        ? null
        : ValidationReport.fromJson(json["validationReport"]),
    stats: json["stats"] == null ? null : Stats.fromJson(json["stats"]),
    bundleReport: json["bundleReport"] == null
        ? null
        : BundleReport.fromJson(json["bundleReport"]),
  );
}