PropertyDropdownList.fromJson constructor
Implementation
factory PropertyDropdownList.fromJson(Map<String, dynamic> json) => PropertyDropdownList(
uuid: json['uuid'],
position: json['position'],
title: PropertyContent<MediaResourceRichText>.fromJson(json['title']),
content: PropertyContent<MediaResourceRichText>.fromJson(json['content']),
);