copyWith method
Implementation
WebhookVerificationKeyGetRequest copyWith(
{String? clientId, String? secret, String? keyId}) {
return WebhookVerificationKeyGetRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
keyId: keyId ?? this.keyId);
}