PullRequestFilter.fromJson constructor
      
      PullRequestFilter.fromJson(
    
    
- 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?,
    );