PropertyDropdownList.fromJson constructor

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

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