PropertyJoinConceptImageText.fromJson constructor
Implementation
factory PropertyJoinConceptImageText.fromJson(Map<String, dynamic> json) => PropertyJoinConceptImageText(
uuid: json['uuid'],
position: json['position'],
image: PropertyContent<MediaResourceImage>.fromJson(json['image']),
text: PropertyContent<MediaResourceRichText>.fromJson(json['text']),
);