DeleteCommentContentOutput.fromJson constructor
Implementation
factory DeleteCommentContentOutput.fromJson(Map<String, dynamic> json) {
return DeleteCommentContentOutput(
comment: json['comment'] != null
? Comment.fromJson(json['comment'] as Map<String, dynamic>)
: null,
);
}