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