copyWith method
AutomaticallyVerifiedWebhook
copyWith({
- String? webhookType,
- String? webhookCode,
- String? accountId,
- String? itemId,
- WebhookEnvironmentValues? environment,
Implementation
AutomaticallyVerifiedWebhook copyWith(
{String? webhookType,
String? webhookCode,
String? accountId,
String? itemId,
enums.WebhookEnvironmentValues? environment}) {
return AutomaticallyVerifiedWebhook(
webhookType: webhookType ?? this.webhookType,
webhookCode: webhookCode ?? this.webhookCode,
accountId: accountId ?? this.accountId,
itemId: itemId ?? this.itemId,
environment: environment ?? this.environment);
}