ContentPropertyExpandable.fromJson constructor
Implementation
factory ContentPropertyExpandable.fromJson(Map<String, Object?> json) {
return ContentPropertyExpandable(
content: json[r'content'] as String?,
additionalProperties: json[r'additionalProperties'] as String?,
);
}