CreatePullRequestCommentRequest.fromJson constructor

CreatePullRequestCommentRequest.fromJson(
  1. Map json_
)

Implementation

CreatePullRequestCommentRequest.fromJson(core.Map json_)
  : this(
      parent: json_['parent'] as core.String?,
      pullRequestComment: json_.containsKey('pullRequestComment')
          ? PullRequestComment.fromJson(
              json_['pullRequestComment']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );