copyWithWrapped method
Implementation
CustomLLM copyWithWrapped(
{Wrapped<String>? url,
Wrapped<dynamic>? modelId,
Wrapped<dynamic>? apiKey}) {
return CustomLLM(
url: (url != null ? url.value : this.url),
modelId: (modelId != null ? modelId.value : this.modelId),
apiKey: (apiKey != null ? apiKey.value : this.apiKey));
}