BatchCreatePullRequestCommentsRequest.fromJson constructor

BatchCreatePullRequestCommentsRequest.fromJson(
  1. Map json_
)

Implementation

BatchCreatePullRequestCommentsRequest.fromJson(core.Map json_)
  : this(
      requests: (json_['requests'] as core.List?)
          ?.map(
            (value) => CreatePullRequestCommentRequest.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );