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