copyWithWrapped method

SandboxItemFireWebhookResponse copyWithWrapped({
  1. Wrapped<bool>? webhookFired,
  2. Wrapped<String>? requestId,
})

Implementation

SandboxItemFireWebhookResponse copyWithWrapped(
    {Wrapped<bool>? webhookFired, Wrapped<String>? requestId}) {
  return SandboxItemFireWebhookResponse(
      webhookFired:
          (webhookFired != null ? webhookFired.value : this.webhookFired),
      requestId: (requestId != null ? requestId.value : this.requestId));
}