copyWith method
SandboxItemFireWebhookRequest
copyWith({
- String? clientId,
- String? secret,
- String? accessToken,
- WebhookType? webhookType,
- SandboxItemFireWebhookRequestWebhookCode? webhookCode,
Implementation
SandboxItemFireWebhookRequest copyWith(
{String? clientId,
String? secret,
String? accessToken,
enums.WebhookType? webhookType,
enums.SandboxItemFireWebhookRequestWebhookCode? webhookCode}) {
return SandboxItemFireWebhookRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken,
webhookType: webhookType ?? this.webhookType,
webhookCode: webhookCode ?? this.webhookCode);
}