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