copyWithWrapped method
WebhookVerificationKeyGetResponse
copyWithWrapped({
- Wrapped<
JWKPublicKey> ? key, - Wrapped<
String> ? requestId,
Implementation
WebhookVerificationKeyGetResponse copyWithWrapped(
{Wrapped<JWKPublicKey>? key, Wrapped<String>? requestId}) {
return WebhookVerificationKeyGetResponse(
key: (key != null ? key.value : this.key),
requestId: (requestId != null ? requestId.value : this.requestId));
}