ModelImages.fromJson constructor
Implementation
factory ModelImages.fromJson(Map<String, dynamic> json) => ModelImages(
desktop: json["desktop"] == null ? null : Desktop.fromJson(json["desktop"]),
mobile: json["mobile"] == null ? null : Mobile.fromJson(json["mobile"]),
);