copyWithWrapped method

SandboxIncomeFireWebhookRequest copyWithWrapped({
  1. Wrapped<String?>? clientId,
  2. Wrapped<String?>? secret,
  3. Wrapped<String>? itemId,
  4. Wrapped<String?>? userId,
  5. Wrapped<String>? webhook,
  6. Wrapped<SandboxIncomeFireWebhookRequestVerificationStatus>? verificationStatus,
})

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));
}