copyWithWrapped method

WebhookVerificationKeyGetResponse copyWithWrapped({
  1. Wrapped<JWKPublicKey>? key,
  2. 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));
}