UpdatePullRequestTitleOutput.fromJson constructor

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

Implementation

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