PullRequestFilter.fromJson constructor

PullRequestFilter.fromJson(
  1. Map json_
)

Implementation

PullRequestFilter.fromJson(core.Map json_)
    : this(
        branch: json_['branch'] as core.String?,
        commentControl: json_['commentControl'] as core.String?,
        invertRegex: json_['invertRegex'] as core.bool?,
      );