CreatePullRequestApprovalRuleOutput.fromJson constructor
Implementation
factory CreatePullRequestApprovalRuleOutput.fromJson(
Map<String, dynamic> json) {
return CreatePullRequestApprovalRuleOutput(
approvalRule:
ApprovalRule.fromJson(json['approvalRule'] as Map<String, dynamic>),
);
}