GetPullRequestOutput.fromJson constructor
Implementation
factory GetPullRequestOutput.fromJson(Map<String, dynamic> json) {
return GetPullRequestOutput(
pullRequest:
PullRequest.fromJson(json['pullRequest'] as Map<String, dynamic>),
);
}