DeleteCommentContentOutput.fromJson constructor

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

Implementation

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