copyWithWrapped method

ConvAIWebhooks copyWithWrapped({
  1. Wrapped? postCallWebhookId,
})

Implementation

ConvAIWebhooks copyWithWrapped({Wrapped<dynamic>? postCallWebhookId}) {
  return ConvAIWebhooks(
      postCallWebhookId: (postCallWebhookId != null
          ? postCallWebhookId.value
          : this.postCallWebhookId));
}