MergePullRequestByFastForwardOutput.fromJson constructor

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

Implementation

factory MergePullRequestByFastForwardOutput.fromJson(
    Map<String, dynamic> json) {
  return MergePullRequestByFastForwardOutput(
    pullRequest: json['pullRequest'] != null
        ? PullRequest.fromJson(json['pullRequest'] as Map<String, dynamic>)
        : null,
  );
}