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