CreatePullRequestOutput.fromJson constructor

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

Implementation

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