copyWithWrapped method
Implementation
SandboxTransferFireWebhookRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<String>? webhook}) {
return SandboxTransferFireWebhookRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
webhook: (webhook != null ? webhook.value : this.webhook));
}