copyWith method

WebhookVerificationKeyGetResponse copyWith({
  1. JWKPublicKey? key,
  2. String? requestId,
})

Implementation

WebhookVerificationKeyGetResponse copyWith(
    {JWKPublicKey? key, String? requestId}) {
  return WebhookVerificationKeyGetResponse(
      key: key ?? this.key, requestId: requestId ?? this.requestId);
}