IosContentJsonDm.fromJson constructor
Implementation
factory IosContentJsonDm.fromJson(Map<String, dynamic> json) {
return IosContentJsonDm(
info: Info.fromJson(json["info"]),
images: List<Image>.from(json["images"].map((x) => Image.fromJson(x))),
);
}