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