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