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