copyWithWrapped method
Implementation
WebhookToolApiSchemaConfigOutput copyWithWrapped(
{Wrapped<String>? url,
Wrapped<enums.WebhookToolApiSchemaConfigOutputMethod?>? method,
Wrapped<Map<String, dynamic>?>? pathParamsSchema,
Wrapped<dynamic>? queryParamsSchema,
Wrapped<dynamic>? requestBodySchema,
Wrapped<Map<String, dynamic>?>? requestHeaders}) {
return WebhookToolApiSchemaConfigOutput(
url: (url != null ? url.value : this.url),
method: (method != null ? method.value : this.method),
pathParamsSchema: (pathParamsSchema != null
? pathParamsSchema.value
: this.pathParamsSchema),
queryParamsSchema: (queryParamsSchema != null
? queryParamsSchema.value
: this.queryParamsSchema),
requestBodySchema: (requestBodySchema != null
? requestBodySchema.value
: this.requestBodySchema),
requestHeaders: (requestHeaders != null
? requestHeaders.value
: this.requestHeaders));
}