ProcessGitHubEnterpriseWebhookRequest.fromJson constructor
      
      ProcessGitHubEnterpriseWebhookRequest.fromJson(
    
    
- Map json_
Implementation
ProcessGitHubEnterpriseWebhookRequest.fromJson(core.Map json_)
  : this(
      body:
          json_.containsKey('body')
              ? HttpBody.fromJson(
                json_['body'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );