copyWith method
Implementation
ItemWebhookUpdateRequest copyWith(
{String? clientId,
String? secret,
String? accessToken,
String? webhook}) {
return ItemWebhookUpdateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
accessToken: accessToken ?? this.accessToken,
webhook: webhook ?? this.webhook);
}