copyWithWrapped method 
    
    
    
  Implementation
  SandboxIncomeFireWebhookRequest copyWithWrapped(
    {Wrapped<String?>? clientId,
    Wrapped<String?>? secret,
    Wrapped<String>? itemId,
    Wrapped<String?>? userId,
    Wrapped<String>? webhook,
    Wrapped<enums.SandboxIncomeFireWebhookRequestVerificationStatus>?
        verificationStatus}) {
  return SandboxIncomeFireWebhookRequest(
      clientId: (clientId != null ? clientId.value : this.clientId),
      secret: (secret != null ? secret.value : this.secret),
      itemId: (itemId != null ? itemId.value : this.itemId),
      userId: (userId != null ? userId.value : this.userId),
      webhook: (webhook != null ? webhook.value : this.webhook),
      verificationStatus: (verificationStatus != null
          ? verificationStatus.value
          : this.verificationStatus));
}