copyWith method
Implementation
RegisteredWebhook copyWith({int? createdWebhookId, List<String>? errors}) {
return RegisteredWebhook(
createdWebhookId: createdWebhookId ?? this.createdWebhookId,
errors: errors ?? this.errors,
);
}
RegisteredWebhook copyWith({int? createdWebhookId, List<String>? errors}) {
return RegisteredWebhook(
createdWebhookId: createdWebhookId ?? this.createdWebhookId,
errors: errors ?? this.errors,
);
}