copyWith method
UpdateWebhookSubscriptionRequest
copyWith({
- String? verificationToken,
- dynamic callbackUrl,
- dynamic eventType,
- dynamic dataType,
Implementation
UpdateWebhookSubscriptionRequest copyWith(
{String? verificationToken,
dynamic callbackUrl,
dynamic eventType,
dynamic dataType}) {
return UpdateWebhookSubscriptionRequest(
verificationToken: verificationToken ?? this.verificationToken,
callbackUrl: callbackUrl ?? this.callbackUrl,
eventType: eventType ?? this.eventType,
dataType: dataType ?? this.dataType);
}