ContentBodyValueExpandable.fromJson constructor
Implementation
factory ContentBodyValueExpandable.fromJson(Map<String, Object?> json) {
return ContentBodyValueExpandable(
editor: json[r'editor'] as String?,
view: json[r'view'] as String?,
exportView: json[r'export_view'] as String?,
styledView: json[r'styled_view'] as String?,
storage: json[r'storage'] as String?,
editor2: json[r'editor2'] as String?,
anonymousExportView: json[r'anonymous_export_view'] as String?,
atlasDocFormat: json[r'atlas_doc_format'] as String?,
wiki: json[r'wiki'] as String?,
dynamic$: json[r'dynamic'] as String?,
raw: json[r'raw'] as String?,
);
}