DescribeCodeReviewResponse.fromJson constructor

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

Implementation

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