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