DocumentReviewCommentSource.fromJson constructor
Implementation
factory DocumentReviewCommentSource.fromJson(Map<String, dynamic> json) {
return DocumentReviewCommentSource(
content: json['Content'] as String?,
type: (json['Type'] as String?)?.toDocumentReviewCommentType(),
);
}