PropertyJoinConceptImageText.fromJson constructor

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

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