PostCommentReplyOutput.fromJson constructor

PostCommentReplyOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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