copyWith method

SandboxItemFireWebhookResponse copyWith({
  1. bool? webhookFired,
  2. String? requestId,
})

Implementation

SandboxItemFireWebhookResponse copyWith(
    {bool? webhookFired, String? requestId}) {
  return SandboxItemFireWebhookResponse(
      webhookFired: webhookFired ?? this.webhookFired,
      requestId: requestId ?? this.requestId);
}