ContentBodyCreateStorage.fromJson constructor
Implementation
factory ContentBodyCreateStorage.fromJson(Map<String, Object?> json) {
return ContentBodyCreateStorage(
value: json[r'value'] as String? ?? '',
representation: ContentBodyCreateStorageRepresentation.fromValue(
json[r'representation'] as String? ?? ''),
);
}