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